diff --git a/flake.nix b/flake.nix index 5464341..062aeb4 100644 --- a/flake.nix +++ b/flake.nix @@ -72,7 +72,7 @@ # pass to it, with each system as an argument forAllSystems = nixpkgs.lib.genAttrs systems; in { - # Your custom packages + # Your custom packages # Accessible through 'nix build', 'nix shell', etc packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system}); # Formatter for your nix files, available through 'nix fmt' @@ -125,21 +125,21 @@ homeConfigurations = { # TODO: theres probably a better way to do this/specify one home config for all devices # main device - "thunkpad" = home-manager.lib.homeManagerConfiguration { + "ruben@thunkpad" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance extraSpecialArgs = {inherit inputs outputs;}; modules = [ - ./users/ruben/home.nix + ./home-manager/home.nix # cat cat cat meow 🐈‍⬛🐈‍⬛🐈‍⬛🐈‍⬛🐈‍⬛🐈‍⬛🐈‍⬛ catppuccin.homeManagerModules.catppuccin ]; }; # secondary device - "thonkpad" = home-manager.lib.homeManagerConfiguration { + "ruben@thonkpad" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance extraSpecialArgs = {inherit inputs outputs;}; modules = [ - ./users/ruben/home.nix + ./home-manager/home.nix # cat cat cat meow 🐈‍⬛🐈‍⬛🐈‍⬛🐈‍⬛🐈‍⬛🐈‍⬛🐈‍⬛ catppuccin.homeManagerModules.catppuccin ];