28 lines
630 B
Nix
28 lines
630 B
Nix
# file: configuration.nix
|
|
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
sources = import ./nix/sources.nix;
|
|
lanzaboote = import sources.lanzaboote;
|
|
in {
|
|
imports = [lanzaboote.nixosModules.lanzaboote];
|
|
|
|
environment.systemPackages = [
|
|
# For debugging and troubleshooting Secure Boot.
|
|
pkgs.sbctl
|
|
];
|
|
|
|
# Lanzaboote currently replaces the systemd-boot module.
|
|
# This setting is usually set to true in configuration.nix
|
|
# generated at installation time. So we force it to false
|
|
# for now.
|
|
boot.loader.systemd-boot.enable = lib.mkForce false;
|
|
|
|
boot.lanzaboote = {
|
|
enable = true;
|
|
pkiBundle = "/var/lib/sbctl";
|
|
};
|
|
}
|