nix/modules/wm/default.nix
2024-10-23 21:31:27 +02:00

17 lines
232 B
Nix

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