13 lines
212 B
Nix
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;
|
|
};
|
|
}
|