nix/modules/wm/default.nix

17 lines
232 B
Nix
Raw Normal View History

2024-10-20 11:11:07 +02:00
{inputs, ...}: {
2024-08-31 16:04:57 +02:00
imports = [
2024-10-04 16:16:47 +02:00
./hyprland
2024-09-16 20:37:19 +02:00
./theme
2024-10-06 12:57:02 +02:00
./gnome
2024-10-20 11:11:07 +02:00
./polkit
2024-10-23 21:31:27 +02:00
./syncthing
2024-10-20 11:11:07 +02:00
./gdm
2024-08-31 16:04:57 +02:00
];
2024-10-20 11:11:07 +02:00
home-manager = {
extraSpecialArgs = {inherit inputs;};
users = {
"joy" = import ./home;
};
};
2024-08-31 16:04:57 +02:00
}