diff options
Diffstat (limited to 'modules/software/networking/vpn/pia.nix')
| -rw-r--r-- | modules/software/networking/vpn/pia.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/software/networking/vpn/pia.nix b/modules/software/networking/vpn/pia.nix new file mode 100644 index 0000000..d52dbf8 --- /dev/null +++ b/modules/software/networking/vpn/pia.nix @@ -0,0 +1,10 @@ +{ secrets, ... }: +{ + services.pia = { + enable = true; + + authUserPass = { + inherit (secrets.pia) username password; + }; + }; +} |