diff --git a/modules/nixos/hardware/boot.nix b/modules/nixos/hardware/boot.nix index 1a497bd..0fdbd96 100644 --- a/modules/nixos/hardware/boot.nix +++ b/modules/nixos/hardware/boot.nix @@ -1,7 +1,7 @@ { config, lib, ... }: { - config = lib.mkIf (config.osbmModules.hardware.systemd-boot.enable) { + config = lib.mkIf config.osbmModules.hardware.systemd-boot.enable { boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; };