0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-11 21:06:19 +03:00

ssh-agent: use types.nullOr

This commit is contained in:
Aristid Breitkreuz 2014-11-15 12:33:01 +01:00
parent d57110fabc
commit 2fd7e5f39d

View file

@ -60,7 +60,7 @@ in
};
agentTimeout = mkOption {
type = types.string;
type = types.nullOr types.string;
default = "1h";
description = ''
How long to keep the private keys in memory. Use null to keep them forever.