1
1
Fork 0
nixos/options/custom/desktops/default.nix
Myned 1bb9f42a98
niri: initial module
Signed-off-by: Myned <dev@bjork.tech>
2024-12-23 13:03:34 -05:00

14 lines
236 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;
};
}