zaphyra's git: nixfiles

zaphyra and void's nixfiles

commit 36f490d3adae9296c956ca53893ae54a512282ec
parent e015a162476628782bcb7919e5c66929a4ce41e9
Author: Hannah Izzie Gesser <hannah@totient.eu>
Date: Mon, 9 Jun 2025 22:00:40 +0200

Refactor graphical preset
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/config/nixos/modules/presets/graphical/enable.nix b/config/nixos/modules/presets/graphical/enable.nix
@@ -18,11 +18,12 @@ in
 
   config = lib.mkIf cfg {
     modules = {
-      boot.secureboot = lib.mkDefault true;
-      boot.plymouth.enable = true;
-
-      font.enable = true;
       audio.enable = true;
+      boot = {
+        plymouth.enable = true;
+        secureboot = lib.mkDefault true;
+      };
+      font.enable = true;
     };
   };