nix: add lanzaboote

This commit is contained in:
Nico 2025-05-03 16:15:58 +10:00
parent 27b763939b
commit 3259c38d75
3 changed files with 229 additions and 1 deletions

View file

@ -4,9 +4,11 @@
inputs = {
# NixOS official package source, using the unstable branch here
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
lanzaboote.url = "github:nix-community/lanzaboote/v0.4.1";
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, ... }@inputs: {
outputs = { self, nixpkgs, lanzaboote, ... }@inputs: {
nixosConfigurations.pluto = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
@ -20,6 +22,9 @@
./modules/games.nix
./modules/stow.nix
./modules/secureboot.nix
lanzaboote.nixosModules.lanzaboote
./hosts/pluto/conf.nix
./hosts/pluto/hardware-configuration.nix
];