1
1
Fork 0
nixos/options/custom/desktops/default.nix
Myned 31ea9ec987
sway: disable and modify config
Signed-off-by: Myned <dev@bjork.tech>
2024-11-08 11:41:09 -06:00

13 lines
212 B
Nix

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