Why is delay a set?
This commit is contained in:
parent
46e0801931
commit
c51aaedb1d
@ -41,13 +41,13 @@ in {
|
|||||||
type = int;
|
type = int;
|
||||||
description =
|
description =
|
||||||
"Maximum age of a file (in seconds), after which it will be removed.";
|
"Maximum age of a file (in seconds), after which it will be removed.";
|
||||||
default = 60 * 60 * 8; # 8 hours
|
default = (60 * 60 * 8); # 8 hours
|
||||||
};
|
};
|
||||||
|
|
||||||
delay = {
|
delay = {
|
||||||
type = int;
|
type = int;
|
||||||
description = "Time between cleanup sweeps.";
|
description = "Time between cleanup sweeps.";
|
||||||
default = 60 * 10; # 10 minutes
|
default = (60 * 10); # 10 minutes
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user