summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2022-03-26 16:28:31 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2022-03-26 16:28:31 +0100
commit02dbb4bcd43c8b0bbbfcb00e3995e80cba57a854 (patch)
tree88fa42a44f5bb11044bbb554061d04c4a06fbdf7 /modules
parentec7b0f75b5abad46a0d3653741f3da113b665f02 (diff)
downloadnixos-02dbb4bcd43c8b0bbbfcb00e3995e80cba57a854.tar
nixos-02dbb4bcd43c8b0bbbfcb00e3995e80cba57a854.tar.gz
nixos-02dbb4bcd43c8b0bbbfcb00e3995e80cba57a854.tar.bz2
nixos-02dbb4bcd43c8b0bbbfcb00e3995e80cba57a854.tar.xz
nixos-02dbb4bcd43c8b0bbbfcb00e3995e80cba57a854.zip
...
Diffstat (limited to 'modules')
-rw-r--r--modules/certspotter.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/certspotter.nix b/modules/certspotter.nix
index f82b004f..51c19e26 100644
--- a/modules/certspotter.nix
+++ b/modules/certspotter.nix
@@ -5,7 +5,7 @@ with lib;
5let 5let
6 cfg = config.services.certspotter; 6 cfg = config.services.certspotter;
7 7
8 startOptions = extraOptions 8 startOptions = cfg.extraOptions
9 ++ optionals (cfg.logs != null) ["-logs" cfg.logs] 9 ++ optionals (cfg.logs != null) ["-logs" cfg.logs]
10 ++ ["-watchlist" (pkgs.writeText "watchlist" (concatStringsSep "\n" cfg.watchList)) 10 ++ ["-watchlist" (pkgs.writeText "watchlist" (concatStringsSep "\n" cfg.watchList))
11 ]; 11 ];