format
This commit is contained in:
parent
42d04f49fe
commit
606e382083
53 changed files with 1319 additions and 967 deletions
|
@ -1,13 +1,19 @@
|
|||
{ lib, config, pkgs, ... }: let
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf mkForce;
|
||||
inherit (config) conf;
|
||||
in mkIf conf.secureboot.enable {
|
||||
environment.systemPackages = [ pkgs.sbctl ];
|
||||
in
|
||||
mkIf conf.secureboot.enable {
|
||||
environment.systemPackages = [pkgs.sbctl];
|
||||
|
||||
boot.loader.systemd-boot.enable = mkForce false;
|
||||
boot.loader.systemd-boot.enable = mkForce false;
|
||||
|
||||
boot.lanzaboote = {
|
||||
enable = true;
|
||||
pkiBundle = "/var/lib/sbctl";
|
||||
};
|
||||
}
|
||||
boot.lanzaboote = {
|
||||
enable = true;
|
||||
pkiBundle = "/var/lib/sbctl";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue