zaphyra's git: nixfiles

zaphyra and void's nixfiles

commit 7eea0bce1911757e5863d8bb0323d520c7f835db
parent 846a83f9276ee92d9f5d0c155396ff987e1d88fe
Author: Katja (ctucx) <git@ctu.cx>
Date: Mon, 19 May 2025 20:32:53 +0200

config/nixos/modules/presets/graphical/type: fix default
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/config/nixos/modules/presets/graphical/type.nix b/config/nixos/modules/presets/graphical/type.nix
@@ -12,9 +12,10 @@ in
 {
 
   option = {
-    type = types.enum [
+    type = types.nullOr (types.enum [
       "gnomeMinimal"
-    ];
+    ]);
+    default = null;
   };
 
 }