Commit ccb573524868

Vincent Demeester <vincent@sbr.pm>
2024-05-13 16:19:46
Do not set systemd-boot.enable to true by default…
… this is a long due, hopefully, it doesn't break any host. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 7a0a6db
Changed files (1)
systems
modules
profiles
systems/modules/profiles/base.nix
@@ -12,16 +12,9 @@ in
         description = "Enable base profile";
         type = types.bool;
       };
-      systemd-boot = mkOption {
-        default = true;
-        description = "Enable systemd-boot for boot loading";
-        type = types.bool;
-      };
     };
   };
   config = mkIf cfg.enable {
-    warnings = [ "The option 'profiles.base.boot' is deprecated, use 'core.boot.systemd-boot' instead" ];
-    boot.loader.systemd-boot.enable = cfg.systemd-boot;
     environment.pathsToLink = [
       "/share/nix-direnv"
     ];