refactor(desktop): rename 'desktops' module to 'desktop'

This commit is contained in:
2026-06-02 09:56:15 +02:00
parent d7b5b77ddc
commit 84c89170e0
4 changed files with 0 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{ lib, config, ... }:
{
options.desktop.gnome.enable = lib.mkEnableOption "GNOME desktop";
config = lib.mkIf config.desktop.gnome.enable {
services.xserver = {
displayManager.gdm.enable = true;
displayManager.gdm.wayland = true;
desktopManager.gnome.enable = true;
};
};
}