This commit is contained in:
Thomas Preisner 2024-12-28 01:42:00 +01:00
parent c90e09d125
commit 1e75d07d56
3 changed files with 22 additions and 1 deletions

View file

@ -103,6 +103,16 @@ in {
'';
};
quota = lib.mkOption {
type = with lib.types; nullOr types.str;
default = null;
example = "2G";
description = ''
Sets quota for the this login account. The size has to be suffixed with `k/M/G/T`.
Not setting a quota results in a standard quota of `100G`.
'';
};
isSystemUser = lib.mkOption {
type = lib.types.bool;
default = false;