Merge pull request #110681 from helsinki-systems/autofs_types

nixos/autofs: add timeout type
This commit is contained in:
Sandro 2021-01-24 13:44:54 +01:00 committed by GitHub
commit 0d71519d68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,6 +52,7 @@ in
};
timeout = mkOption {
type = types.int;
default = 600;
description = "Set the global minimum timeout, in seconds, until directories are unmounted";
};