feature(protonvpn): add protonvpn nix module

This commit is contained in:
2026-03-05 21:36:10 +01:00
parent 8cdcb15618
commit d7a08c2571
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
networking.firewall.checkReversePath = false;
environment.systemPackages = with pkgs; [
wireguard-tools
protonvpn-gui
];
}