aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-02 13:00:08 +0000
committerFuwn <[email protected]>2024-10-02 13:38:02 +0000
commit61178a6757d8b4a512469b6336b35b7c4e5b836a (patch)
treee30841c1359cfef509c06c1f725f08e1f96b08c4
parentfeat(flake.nix): bump nixpkgs to 24.05 (diff)
downloadpia.nix-61178a6757d8b4a512469b6336b35b7c4e5b836a.tar.xz
pia.nix-61178a6757d8b4a512469b6336b35b7c4e5b836a.zip
docs(readme): update fields
-rw-r--r--README.md16
1 files changed, 2 insertions, 14 deletions
diff --git a/README.md b/README.md
index eaa9640..df0f1d7 100644
--- a/README.md
+++ b/README.md
@@ -3,22 +3,14 @@
The repo contains a flake module to add the Private Internet Access
VPNs to your Nixos system.
-## Dislcaimer
-
-I'm not associated with PIA in any way. Depending on when you read
-this, I may not even be a subscriber with them any longer. However, I
-thought it might be useful for other people who are. I also vainly
-hoped that it might inspire people to release Nixos modules for other
-services.
-
## Installation
You'll need to include this module in your `flake.nix` file:
```
{
- inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-21.05";
- inputs.pia.url = "git+https://git.sr.ht/~rprospero/nixos-pia?ref=development";
+ inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
+ inputs.pia.url = "github:Fuwn/nixos-pia?ref=development";
inputs.pia.inputs.nixpkgs.follows = "nixpkgs";
outputs = { self, nixpkgs, pia }: {
@@ -41,7 +33,3 @@ And you'll need to enable the vpn in another module. For example, you might hav
services.pia.authUserPass.password = "hunter42";
}
```
-
-## FAQ
-
-* How do I use this without moving my configuration to Nix Flake? No idea. Let me know if you figure it out.