nix/modules/wm/default.nix
2024-11-24 19:21:08 +01:00

25 lines
314 B
Nix

{
inputs,
username,
domain,
...
}: {
imports = [
./gdm
./gnome
./hyprland
./polkit
./syncthing
];
home-manager = {
extraSpecialArgs = {
inherit inputs;
inherit username;
inherit domain;
};
users = {
"${username}" = import ./home;
};
};
}