diff options
| author | Fuwn <[email protected]> | 2024-10-07 07:24:18 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-07 07:24:18 +0000 |
| commit | 7b0536f8405b3f65fc17fd59594507bd7a3a8ef7 (patch) | |
| tree | 94dabcd8c34759699607dd3b6d599d6b14222dee /README.md | |
| parent | refactor(flake.nix): replace inverted inequality check (diff) | |
| download | pia.nix-7b0536f8405b3f65fc17fd59594507bd7a3a8ef7.tar.xz pia.nix-7b0536f8405b3f65fc17fd59594507bd7a3a8ef7.zip | |
docs(readme): update remote repository
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,16 +1,18 @@ -# Private Internet Access VPN Configurations for NixOS +# 🔒 `pia.nix` + +> Private Internet Access VPN Configurations for NixOS This repository is a fork of [~rprospero/nixos-pia](https://git.sr.ht/~rprospero/nixos-pia) that has been updated and is being actively maintained. ## Flake-based Installation -Add the `nixos-pia` module to your system flake and configuration. +Add the `pia.nix` NixOS module to your system flake and configuration. ```nix { inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; - inputs.pia.url = "github:Fuwn/nixos-pia"; + inputs.pia.url = "github:Fuwn/pia.nix"; inputs.pia.inputs.nixpkgs.follows = "nixpkgs"; outputs = { nixpkgs, pia, self }: { @@ -23,7 +25,8 @@ Add the `nixos-pia` module to your system flake and configuration. ## Module Set-up -Configure `nixos-pia` in your NixOS configuration. +Configure `pia.nix` in your NixOS configuration through the `services.pia` +attribute set. ```nix { config, ... }: { |