nixos-config/config/secureboot.nix

20 lines
510 B
Nix
Raw Normal View History

2022-04-20 14:46:01 +00:00
{ pkgs, config, ... }: {
2022-04-20 07:35:17 +00:00
imports = [
../modules/systemd-secure-boot
2022-04-20 14:46:01 +00:00
../modules/systemd-cryptsetup.nix
2022-04-20 07:35:17 +00:00
];
sops.secrets."secureboot/DB.key" = { };
boot.loader.systemd-boot = {
editor = false;
secureBoot = {
enable = true;
keyPath = config.sops.secrets."secureboot/DB.key".path;
certPath = builtins.toString ../efi/DB.crt;
};
};
system.extraSystemBuilderCmds = ''
substituteAll ${../extra/switch-to-configuration.pl} $out/bin/switch-to-configuration
'';
2022-04-20 07:35:17 +00:00
}