From ac1400164649b34b1599a5fd8c449eeab21aad16 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Thu, 4 Jan 2024 15:14:28 +0800 Subject: [PATCH] fix(boot): set up sbctl unconditionally --- faucet/boot/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faucet/boot/default.nix b/faucet/boot/default.nix index 3b2b70bf..7c197629 100644 --- a/faucet/boot/default.nix +++ b/faucet/boot/default.nix @@ -23,7 +23,7 @@ in { }; # symlink for sbctl - environment.etc.secureboot = mkIf cfg.lanzaboote { source = sbPath; }; - #environment.systemPackages = optional cfg.lanzaboote pkgs.sbctl; + environment.etc.secureboot.source = sbPath; + environment.systemPackages = [ pkgs.sbctl ]; }; }