From c51aaedb1da77f960b58abfcb23c21200a12f265 Mon Sep 17 00:00:00 2001 From: niten Date: Sat, 7 Jan 2023 12:43:18 -0800 Subject: [PATCH] Why is delay a set? --- objectifier-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objectifier-module.nix b/objectifier-module.nix index db0b11f..f77f159 100644 --- a/objectifier-module.nix +++ b/objectifier-module.nix @@ -41,13 +41,13 @@ in { type = int; description = "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 = { type = int; description = "Time between cleanup sweeps."; - default = 60 * 10; # 10 minutes + default = (60 * 10); # 10 minutes }; }; };