diff options
Diffstat (limited to 'modules/services')
| -rw-r--r-- | modules/services/pia.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/services/pia.nix b/modules/services/pia.nix index d3c72ca..405f0f1 100644 --- a/modules/services/pia.nix +++ b/modules/services/pia.nix @@ -1,10 +1,11 @@ +{ secrets, ... }: { services.pia = { enable = true; authUserPass = { - username = "p7456565"; - password = "hc5yxck7yW34vD"; + username = secrets.pia.username; + password = secrets.pia.password; }; }; } |