This commit is contained in:
Osman Faruk Bayram 2025-10-19 21:31:09 +03:00
parent 316187dd31
commit f7f7dee190
3 changed files with 39 additions and 145 deletions

View file

@ -233,6 +233,18 @@
};
root = {
useTmpfs = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Use tmpfs for root instead of ZFS (with ZFS datasets for /nix and /persist)";
};
tmpfsSize = lib.mkOption {
type = lib.types.str;
default = "2G";
description = "Size of tmpfs root filesystem";
};
encrypt = lib.mkOption {
type = lib.types.bool;
default = true;