Daniel Lundin
936e38be15
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
FIXME: needs zstd support in the kernel, so probablt not a great idea for now
27 lines
710 B
Nix
27 lines
710 B
Nix
{ ... }:
|
|
{
|
|
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
|
|
composefs = final.callPackage ../../pkgs/composefs.nix { inherit prev; };
|
|
erofs-utils = final.callPackage ../../pkgs/erofs-utils.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;
|
|
# };
|
|
|
|
})
|
|
];
|
|
|
|
}
|