diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-16 16:44:30 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-16 16:44:30 +0200 |
commit | a76847911c1975bf89e031154c7722d7919ef053 (patch) | |
tree | 630a0d1b43a6ed7a27029f1cddb3ada0eb28263f /modules/by-name/bo/boot/module.nix | |
parent | flake: Pack arguments in attribute sets (diff) | |
download | nixos-config-a76847911c1975bf89e031154c7722d7919ef053.zip |
modules: Import external modules in the module that actually need them
Diffstat (limited to 'modules/by-name/bo/boot/module.nix')
-rw-r--r-- | modules/by-name/bo/boot/module.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/by-name/bo/boot/module.nix b/modules/by-name/bo/boot/module.nix index 8b9ca6dd..404352ac 100644 --- a/modules/by-name/bo/boot/module.nix +++ b/modules/by-name/bo/boot/module.nix @@ -11,6 +11,7 @@ config, lib, pkgs, + modules, ... }: let cfg = config.soispha.boot; @@ -21,6 +22,10 @@ in { # enableIsoEntry = lib.mkEnableOption "an tails iso boot entry"; }; + imports = [ + modules.lanzaboote.nixosModules.lanzaboote + ]; + config = lib.mkIf cfg.enable ( # let # cfg = config.boot.loader.systemd-boot; |