mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-16 11:12:00 -05:00
21 lines
389 B
Nix
21 lines
389 B
Nix
{
|
|
hostname,
|
|
inputs,
|
|
username,
|
|
...
|
|
}: {
|
|
imports = with inputs; [
|
|
./${hostname}
|
|
# chaotic.nixosModules.default
|
|
disko.nixosModules.disko
|
|
stylix.nixosModules.stylix
|
|
home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager = {
|
|
extraSpecialArgs = {inherit hostname inputs username;};
|
|
users.${username} = import ../home;
|
|
};
|
|
}
|
|
];
|
|
}
|