nix/modules/wm/default.nix
2024-11-08 18:23:40 +01:00

26 lines
327 B
Nix

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