mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
16 lines
286 B
Nix
16 lines
286 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";
|
|
};
|
|
};
|
|
}
|