hosts: add elnucentre
This commit is contained in:
parent
70474fac8e
commit
4835d30b62
5 changed files with 112 additions and 0 deletions
|
@ -167,4 +167,28 @@ in
|
|||
}
|
||||
];
|
||||
};
|
||||
|
||||
elnucentre = lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = {
|
||||
inherit user;
|
||||
};
|
||||
modules = configImports ++ [
|
||||
./elnucentre
|
||||
{
|
||||
networking.hostName = "elnucentre";
|
||||
}
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager = {
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = { inherit user; };
|
||||
users.${user} = {
|
||||
imports = hmImports ++ [
|
||||
(import ./elnucentre/home.nix)
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue