nixos-config/system/vpn.nix

9 lines
142 B
Nix
Raw Normal View History

2020-05-22 18:16:21 +02:00
{ config, pkgs, ... }:
{
networking.wireguard.enable = true;
2020-08-15 01:37:16 +02:00
networking.iproute2.enable = true;
2020-05-22 18:16:21 +02:00
services.mullvad-vpn.enable = true;
}