diff options
author | Karel Kočí <cynerd@email.cz> | 2023-01-18 14:33:05 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-01-18 14:33:05 +0100 |
commit | 961a5c06c2a07870e846238be5365ad1c44dcaba (patch) | |
tree | 6e3294fda7b8d190c5237797f1f150eeeb770015 /nixos/modules | |
parent | 33bcefc45b4a8881310f77a2bbda466a8b0f466a (diff) | |
download | nixos-personal-961a5c06c2a07870e846238be5365ad1c44dcaba.tar.gz nixos-personal-961a5c06c2a07870e846238be5365ad1c44dcaba.tar.bz2 nixos-personal-961a5c06c2a07870e846238be5365ad1c44dcaba.zip |
nixos/lipwig: extend functionality
Diffstat (limited to 'nixos/modules')
-rw-r--r-- | nixos/modules/syncthing.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/syncthing.nix b/nixos/modules/syncthing.nix index db8b6a8..716e5a3 100644 --- a/nixos/modules/syncthing.nix +++ b/nixos/modules/syncthing.nix @@ -51,8 +51,8 @@ in { services.syncthing = { enable = any (n: n == hostName) allDevices; user = mkDefault "cynerd"; - key = "/run/secrets/syncthing/key.pem"; - cert = "/run/secrets/syncthing/cert.pem"; + key = "/run/secrets/syncthing.key.pem"; + cert = "/run/secrets/syncthing.cert.pem"; openDefaultPorts = true; |