fix lanzaboote module import
This commit is contained in:
parent
a4ddbada50
commit
39774a6974
|
@ -103,7 +103,10 @@
|
||||||
inherit lanzatool;
|
inherit lanzatool;
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosModules.lanzaboote = import ./nix/lanzaboote.nix;
|
nixosModules.lanzaboote = { pkgs, lib, ... }: {
|
||||||
|
imports = [ ./nix/lanzaboote.nix ];
|
||||||
|
boot.lanzaboote.package = lib.mkDefault self.packages.${pkgs.system}.lanzaboote;
|
||||||
|
};
|
||||||
|
|
||||||
packages.x86_64-linux = {
|
packages.x86_64-linux = {
|
||||||
inherit initrd-stub lanzaboote lanzatool;
|
inherit initrd-stub lanzaboote lanzatool;
|
||||||
|
|
Loading…
Reference in New Issue