0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/matrix-appservice-irc: allow disabling the ttl by setting it to 0 (#340841)

This commit is contained in:
Martin Weinelt 2024-09-09 20:58:45 +02:00 committed by GitHub
commit 58aa6d56f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View file

@ -147,10 +147,13 @@ in {
'';
};
ttlSeconds = lib.mkOption {
type = ints.positive;
type = ints.unsigned;
default = 3600;
example = 0;
description = ''
Lifetime in seconds, that generated URLs stay valid.
Set the lifetime to 0 to prevent URLs from becoming invalid.
'';
};
bindPort = lib.mkOption {