nix/modules/wm/default.nix

16 lines
216 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
./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
}