Enable secure boot.

This commit is contained in:
Tom Alexander
2024-12-22 10:58:01 -05:00
parent 748e6dee68
commit 5d23126205
5 changed files with 294 additions and 34 deletions

View File

@@ -35,6 +35,12 @@
nixpkgs-b93b4e9b5.url = "github:NixOS/nixpkgs/b93b4e9b527904aadf52dba6ca35efde2067cbd4";
home-manager.url = "github:nix-community/home-manager/release-24.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.4.1";
# Optional but recommended to limit the size of your system closure.
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
@@ -45,6 +51,7 @@
nixpkgs-b93b4e9b5,
impermanence,
home-manager,
lanzaboote,
...
}@inputs:
let
@@ -61,6 +68,7 @@
modules = [
impermanence.nixosModules.impermanence
home-manager.nixosModules.home-manager
lanzaboote.nixosModules.lanzaboote
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;