feat: secure boot enabled on lappy

This commit is contained in:
stitchy 2025-07-31 17:20:28 -07:00
parent b0881d9244
commit fa3624655d
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8
3 changed files with 180 additions and 2 deletions

View file

@ -2,6 +2,7 @@
description = "System Configuration Flake";
outputs = inputs@{
catppuccin,
lanzaboote,
nixpkgs,
nixpkgs-xr,
nixos-hardware,
@ -41,6 +42,7 @@
specialArgs = { inherit inputs; };
modules = [
catppuccin.nixosModules.catppuccin
lanzaboote.nixosModules.lanzaboote
nixos-hardware.nixosModules.framework-12th-gen-intel
./hosts/lappy/default.nix
@ -104,7 +106,11 @@
catppuccin.url = "github:catppuccin/nix";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs.follows = "nixpkgs";
};
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.4.2";
inputs.nixpkgs.follows = "nixpkgs";
};
mobile-nixos = {
url = "github:nixos/mobile-nixos";