fix
This commit is contained in:
parent
316187dd31
commit
f7f7dee190
3 changed files with 39 additions and 145 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue