Add Bluetui, organize some other things

This commit is contained in:
Bun 2025-04-17 11:17:51 -04:00
parent c2ae238ae3
commit 6ead3afd36
4 changed files with 19 additions and 8 deletions

View file

@ -1,7 +1,14 @@
{ pkgs, lanzaboote, ... }:
{ config, pkgs, lanzaboote, ... }:
{
imports = [ lanzaboote.nixosModules.lanzaboote ];
boot.lanzaboote.pkiBundle = "/etc/secureboot";
environment.systemPackages = with pkgs; [ sbctl ];
environment = {
systemPackages = with pkgs; [ sbctl ];
persistence."/persist".directories = [{
directory = config.boot.lanzaboote.pkiBundle;
mode = "0700";
}];
};
}