liminix-fork/tests/jffs2/configuration.nix
Daniel Barlow 42725f56f9 make jffs2 module provide o.rootfs, conditionally
it's enabled if config.rootfsType == "jffs2"
2023-04-10 20:01:58 +01:00

8 lines
147 B
Nix

{ config, pkgs, lib, ... } :
{
imports = [
../../vanilla-configuration.nix
../../modules/jffs2.nix
];
config.rootfsType = "jffs2";
}