home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit ccb5735248684806f8ed60bfd5d46b858b73a8a9
parent 7a0a6db3f8f4948d63ef5e885a7457c38b54316c
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 13 May 2024 16:19:46 +0200

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>

Diffstat:
Msystems/modules/profiles/base.nix | 7-------
1 file changed, 0 insertions(+), 7 deletions(-)

diff --git a/systems/modules/profiles/base.nix b/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" ];