diff --git a/modules/nixos/system/hw/boot/default.nix b/modules/nixos/system/hw/boot/default.nix index a164474..a049fb0 100644 --- a/modules/nixos/system/hw/boot/default.nix +++ b/modules/nixos/system/hw/boot/default.nix @@ -1,7 +1,7 @@ { lib, config, ... }: -let isCI = builtins.elem config.syscfg.hostname [ "ci" "sandbox" ]; +let isSANDBOX = builtins.elem config.syscfg.hostname [ "sandbox" ]; in { - config = lib.mkIf (!isCI) { + config = lib.mkIf (!isSANDBOX) { boot.loader = { systemd-boot = { enable = true;