zaphyra's git: nixfiles

zaphyra and void's nixfiles

commit 83ac9872eb1a1be259f692d007809f329c8d800b
parent ca7857838030e8f71d60d85091d3110e23838563
Author: Katja (zaphyra) <git@ctu.cx>
Date: Tue, 27 May 2025 19:12:30 +0200

config/nixos/modules/boot/enable: should be `false` by default, ooops
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/nixos/modules/boot/enable.nix b/config/nixos/modules/boot/enable.nix
@@ -14,7 +14,7 @@ in
 
   option = {
     type = types.bool;
-    default = true;
+    default = false;
   };
 
   config = lib.mkIf cfg.enable {