added security.nix for secure boot

This commit is contained in:
kenji
2025-08-14 15:07:51 -05:00
parent 9a05a5546f
commit bc268218a5
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -15,6 +15,7 @@
../../modules/default/udev.nix
../../modules/default/boot.nix
../../modules/default/dev.nix
../../modules/default/security.nix
];
system.stateVersion = "25.05";
+6
View File
@@ -0,0 +1,6 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
niv
sbtctl
];
}