diff --git a/nixos/modules/monitoring/vpn/client.nix b/nixos/modules/monitoring/vpn/client.nix index ea23a5bac2229e7f9f4c72eae343e9b54bfac1c4..921a37aa8aebb144c58dc2613b0a92b1aaba9cd6 100644 --- a/nixos/modules/monitoring/vpn/client.nix +++ b/nixos/modules/monitoring/vpn/client.nix @@ -49,8 +49,8 @@ in { }; endpointPublicKeyFile = lib.mkOption { type = lib.types.path; - example = lib.literalExample ../../PrivateStorageSecrets/monitoringvpn/server.pub; - default = ../../../../morph/PrivateStorageSecrets/monitoringvpn/server.pub; + example = lib.literalExample ../PrivateStorageSecrets/monitoringvpn/server.pub; + default = ../../../../../PrivateStorageSecrets/monitoringvpn/server.pub; description = '' File with base64 public key generated by <command>cat private.key | wg pubkey > pubkey.pub</command>. ''; diff --git a/nixos/modules/monitoring/vpn/server.nix b/nixos/modules/monitoring/vpn/server.nix index d61756019b74b3a37bade15745e1e7d6a9130b4f..227207a7856b4400d01af5388fa46f5d91cd590f 100644 --- a/nixos/modules/monitoring/vpn/server.nix +++ b/nixos/modules/monitoring/vpn/server.nix @@ -51,8 +51,8 @@ in { }; pubKeysPath = lib.mkOption { type = lib.types.path; - example = lib.literalExample ../../../../morph/PrivateStorageSecrets/monitoringvpn; - default = ../../../../morph/PrivateStorageSecrets/monitoringvpn; + example = lib.literalExample ../PrivateStorageSecrets/monitoringvpn; + default = ../../../../../PrivateStorageSecrets/monitoringvpn; description = '' The path to the directory that holds the public keys. '';