diff options
author | 2025-03-19 21:44:58 +0100 | |
---|---|---|
committer | 2025-03-19 21:44:58 +0100 | |
commit | 3b9dfe2c2219440af2073072e6b680668b968bb1 (patch) | |
tree | 1ce0bedd286e5a379691365c150fd07b178a6cee /module | |
parent | fda41b7edb9d8ed31878ca67e22192e70c27cbc6 (diff) | |
download | icalproxy-main.tar.gz icalproxy-main.zip |
Diffstat (limited to 'module')
-rw-r--r-- | module/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/module/default.nix b/module/default.nix index 774a361..474187f 100644 --- a/module/default.nix +++ b/module/default.nix | |||
@@ -25,6 +25,9 @@ in { | |||
25 | port = mkOption { | 25 | port = mkOption { |
26 | type = str; | 26 | type = str; |
27 | }; | 27 | }; |
28 | userAgent = mkOption { | ||
29 | type = str; | ||
30 | }; | ||
28 | userTokens = mkOption { | 31 | userTokens = mkOption { |
29 | type = attrsOf (submodule { | 32 | type = attrsOf (submodule { |
30 | options = { | 33 | options = { |
@@ -59,6 +62,7 @@ in { | |||
59 | summary_regexes = cfg.ignore.summaryRegexes; | 62 | summary_regexes = cfg.ignore.summaryRegexes; |
60 | }; | 63 | }; |
61 | port = cfg.port; | 64 | port = cfg.port; |
65 | user_agent = cfg.userAgent; | ||
62 | user_tokens = cfg.userTokens; | 66 | user_tokens = cfg.userTokens; |
63 | }); | 67 | }); |
64 | }; | 68 | }; |