summaryrefslogtreecommitdiff
path: root/modules/system/networking/vpn/pia.nix
blob: d52dbf81c427018c951ab4712e19125fd4361407 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ secrets, ... }:
{
  services.pia = {
    enable = true;

    authUserPass = {
      inherit (secrets.pia) username password;
    };
  };
}