feat: add mullvad

This commit is contained in:
Felix Schröter 2020-05-22 18:16:21 +02:00
parent dfe16651ab
commit 35d682dd05
No known key found for this signature in database
GPG key ID: A12D7C9D2FD34458
5 changed files with 20 additions and 0 deletions

View file

@ -4,6 +4,7 @@
imports = [
./i18n.nix
./nix.nix
./vpn.nix
];
environment.systemPackages = with pkgs; [

5
system/vpn.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
services.mullvad-vpn.enable = true;
}