nix/modules/uki: fix ukify build
Previously, we were not on recent enough nixpkgs to see the new `withBootloader` flag which is required to build ukify. Fixes the test.
This commit is contained in:
parent
644dc8a269
commit
a55db483fb
|
@ -21,6 +21,7 @@ in
|
||||||
let
|
let
|
||||||
systemdUkify = pkgs.systemdMinimal.override {
|
systemdUkify = pkgs.systemdMinimal.override {
|
||||||
withEfi = true;
|
withEfi = true;
|
||||||
|
withBootloader = true;
|
||||||
withUkify = true;
|
withUkify = true;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in New Issue