nix/modules/wm/default.nix

26 lines
327 B
Nix
Raw Normal View History

2024-11-08 18:23:40 +01:00
{
inputs,
username,
domain,
...
}: {
2024-08-31 16:04:57 +02:00
imports = [
2024-11-08 18:23:40 +01:00
./gdm
2024-10-06 12:57:02 +02:00
./gnome
2024-11-08 18:23:40 +01:00
./hyprland
2024-10-20 11:11:07 +02:00
./polkit
2024-11-08 18:23:40 +01:00
./stylix
2024-10-23 21:31:27 +02:00
./syncthing
2024-08-31 16:04:57 +02:00
];
2024-10-20 11:11:07 +02:00
home-manager = {
2024-11-08 18:23:40 +01:00
extraSpecialArgs = {
inherit inputs;
inherit username;
inherit domain;
};
2024-10-20 11:11:07 +02:00
users = {
2024-11-08 18:23:40 +01:00
"${username}" = import ./home;
2024-10-20 11:11:07 +02:00
};
};
2024-08-31 16:04:57 +02:00
}