Former-commit-id: 3cfb9e733a
This commit is contained in:
Hadi
2024-06-26 10:32:58 +02:00
committed by GitHub
parent d276202288
commit 674ef50ac9
6 changed files with 38 additions and 40 deletions

View File

@@ -41,7 +41,7 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users."hadi" = import ./home/laptop.nix;
users."hadi" = import ./hosts/laptop/home.nix;
extraSpecialArgs = { inherit inputs; };
};
}
@@ -60,7 +60,7 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users."hadi" = import ./home/server.nix;
users."hadi" = import ./hosts/server/home.nix;
extraSpecialArgs = { inherit inputs; };
};
}
@@ -79,7 +79,7 @@
useGlobalPkgs = true;
useUserPackages = true;
users."yourusername" = import # CHANGEME
./home/laptop.nix; # you can also create a new ./home/yourhostname.nix
./hosts/yourhostname/home.nix; # CHANGEME
extraSpecialArgs = { inherit inputs; };
};
}