1
1
Fork 0
nixos/options/custom/desktops/default.nix
Myned 026a76aeec
desktops: disable hyprland
Signed-off-by: Myned <dev@bjork.tech>
2024-12-23 22:54:09 -05:00

14 lines
240 B
Nix

{
config,
lib,
...
}:
with lib; {
config.custom.desktops = mkIf config.custom.full {
#// gnome.enable = true;
#// hyprland.enable = true;
#// kde.enable = true;
niri.enable = true;
#// sway.enable = true;
};
}