From a260e3d5bc924cb27715e104649234ff06c22ab7 Mon Sep 17 00:00:00 2001 From: Tasia Iso Date: Thu, 3 Oct 2024 12:14:24 +0200 Subject: [PATCH] knew it --- hosts/vulpecula/configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/vulpecula/configuration.nix b/hosts/vulpecula/configuration.nix index 557afed..b8af17a 100644 --- a/hosts/vulpecula/configuration.nix +++ b/hosts/vulpecula/configuration.nix @@ -50,13 +50,13 @@ ]; boot = { - loader.systemd-boot.enable = false; + loader.systemd-boot.enable = lib.mkForce false; # efi.canTouchEfiVariables = true; initrd = { - enable = !config.boot.isContainer; - systemd.enable = false; + enable = lib.mkForce !config.boot.isContainer; + systemd.enable = lib.mkForce false; }; };