nixos-config/system/vpn.nix

11 lines
220 B
Nix
Raw Normal View History

2020-05-22 18:16:21 +02:00
{ config, pkgs, ... }:
{
networking.wireguard.enable = true;
# TODO fix for https://github.com/NixOS/nixpkgs/issues/113589
networking.firewall.checkReversePath = "loose";
2020-08-15 01:37:16 +02:00
2020-05-22 18:16:21 +02:00
services.mullvad-vpn.enable = true;
}