mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
20 lines
294 B
Nix
20 lines
294 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkForce;
|
|
in {
|
|
environment.systemPackages = with pkgs; [
|
|
sbctl
|
|
];
|
|
boot = {
|
|
loader = {
|
|
systemd-boot.enable = mkForce false;
|
|
};
|
|
lanzaboote = {
|
|
enable = true;
|
|
pkiBundle = "/etc/secureboot";
|
|
};
|
|
};
|
|
}
|