mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2026-02-04 21:31:57 -05:00
19 lines
325 B
Nix
19 lines
325 B
Nix
{
|
|
hostname,
|
|
inputs,
|
|
username,
|
|
...
|
|
}: {
|
|
imports = with inputs; [
|
|
./${hostname}
|
|
stylix.nixosModules.stylix
|
|
home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager = {
|
|
extraSpecialArgs = {inherit hostname inputs username;};
|
|
users.${username} = import ../home;
|
|
};
|
|
}
|
|
];
|
|
}
|