hosts: add elnucentre

This commit is contained in:
Elnu 2023-11-07 10:55:54 -08:00
parent 70474fac8e
commit 4835d30b62
5 changed files with 112 additions and 0 deletions

View file

@ -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)
];
};
};
}
];
};
}