20 lines
313 B
Nix
20 lines
313 B
Nix
{
|
|
config
|
|
, pkgs
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (pkgs) liminix;
|
|
inherit (lib) mkIf;
|
|
in
|
|
{
|
|
config = mkIf (config.rootfsType == "squashfs") {
|
|
system.outputs.rootfs =
|
|
liminix.builders.squashfs config.filesystem.contents;
|
|
kernel.config = {
|
|
SQUASHFS = "y";
|
|
SQUASHFS_XZ = "y";
|
|
};
|
|
};
|
|
}
|