add ext4 as rootfsType

This commit is contained in:
Daniel Barlow 2023-11-06 21:52:31 +00:00
parent 6bbff2f5b3
commit a9d847e2c0
6 changed files with 102 additions and 2 deletions

View file

@ -39,7 +39,12 @@ in {
};
rootfsType = mkOption {
default = "squashfs";
type = types.enum ["squashfs" "jffs2" "ubifs"];
type = types.enum [
"ext4"
"jffs2"
"squashfs"
"ubifs"
];
};
boot = {
commandLine = mkOption {