looking good
This commit is contained in:
parent
a1e9bb892a
commit
8d34db82c8
4 changed files with 22 additions and 23 deletions
21
flake.nix
21
flake.nix
|
|
@ -35,11 +35,12 @@
|
|||
|
||||
mila = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [ ./hosts/mila ];
|
||||
modules = [
|
||||
./hosts/mila
|
||||
];
|
||||
};
|
||||
|
||||
nova =
|
||||
nixpkgs.lib.nixosSystem {
|
||||
nova = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./hosts/nova
|
||||
|
|
@ -47,13 +48,13 @@
|
|||
nixpkgs.config.allowUnfree = true;
|
||||
}
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
||||
home-manager.useGlobalPkgs = true;
|
||||
# home-manager.useUserPackages = true;
|
||||
home-manager.users.till = {
|
||||
imports = [
|
||||
./home
|
||||
];
|
||||
home-manager = {
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.till = {
|
||||
imports = [ ./home ];
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue