nixos-config/system/vpn.nix

9 lines
169 B
Nix
Raw Normal View History

2020-05-22 18:16:21 +02:00
{ config, pkgs, ... }:
{
2020-08-15 01:37:16 +02:00
# workaround for https://github.com/NixOS/nixpkgs/issues/91923
networking.iproute2.enable = true;
2020-05-22 18:16:21 +02:00
services.mullvad-vpn.enable = true;
}