summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-24 13:44:54 +0100
committerGitHub <noreply@github.com>2021-01-24 13:44:54 +0100
commit0d71519d68a0196f4fbff27836150c295eaee824 (patch)
tree3358ebd5b8c7981187731d70d3455c32ac88aa6b
parent5cdf493674130d80d221d5cbdf01abbf04577fae (diff)
parent91311fcb462d7ff4365ccb96898efe7c1cf211b8 (diff)
Merge pull request #110681 from helsinki-systems/autofs_types
nixos/autofs: add timeout type
-rw-r--r--nixos/modules/services/misc/autofs.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/misc/autofs.nix b/nixos/modules/services/misc/autofs.nix
index 5e7c1e668288a..541f0d2db19f4 100644
--- a/nixos/modules/services/misc/autofs.nix
+++ b/nixos/modules/services/misc/autofs.nix
@@ -52,6 +52,7 @@ in
       };
 
       timeout = mkOption {
+        type = types.int;
         default = 600;
         description = "Set the global minimum timeout, in seconds, until directories are unmounted";
       };