mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
- Added lanzaboote - Disabled systemd-boot in favor of lanzaboote - Added sbctl
12 lines
258 B
Nix
12 lines
258 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
boot.loader.systemd-boot.enable = lib.mkForce false;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.supportedFilesystems = [ "ntfs" ];
|
|
|
|
boot.lanzaboote = {
|
|
enable = true;
|
|
pkiBundle = "/var/lib/sbctl";
|
|
};
|
|
}
|