Daniel Lundin
c59ea29957
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
We want verity protected partitions as well as encrypted state/data along with verified boot. This PR integrates Peter Marshall's awesome little Nixlet project as a starting point, especially the nice testing scaffolding will be super helpful! ✨ https://github.com/petm5/nixlet/
26 lines
626 B
Nix
26 lines
626 B
Nix
{ ... }:
|
|
{
|
|
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
|
|
composefs = final.callPackage ../../pkgs/composefs.nix { inherit prev; };
|
|
qemu_tiny = final.callPackage ../../pkgs/qemu.nix { inherit prev; };
|
|
systemdUkify = final.callPackage ../../pkgs/systemd-ukify.nix { inherit prev; };
|
|
|
|
# # FIXME: Revisit + refine these below in a future image minimization effort
|
|
#
|
|
# util-linux = prev.util-linux.override {
|
|
# ncursesSupport = false;
|
|
# nlsSupport = false;
|
|
# };
|
|
#
|
|
# dbus = prev.dbus.override {
|
|
# enableSystemd = false;
|
|
# x11Support = false;
|
|
# };
|
|
|
|
})
|
|
];
|
|
|
|
}
|