]> Git — Sourcephile - julm/julm-nix.git/blob - hosts/nan2gua1/lanzaboote.nix
git: git-grep-edit: try to support spaces in names
[julm/julm-nix.git] / hosts / nan2gua1 / lanzaboote.nix
1 {
2 config,
3 pkgs,
4 lib,
5 ...
6 }:
7 {
8 # Lanzaboote currently replaces the systemd-boot module.
9 # This setting is usually set to true in configuration.nix
10 # generated at installation time.
11 # So we force it to false for now.
12 boot.loader.systemd-boot.enable = lib.mkForce false;
13 boot.lanzaboote = {
14 enable = true;
15 pkiBundle = "/var/lib/sbctl";
16 };
17 environment.systemPackages = [
18 pkgs.sbctl
19 ];
20 }