From ff459f51a44bd84fddc2ee7952d25ea920bd246f Mon Sep 17 00:00:00 2001 From: Kevin Kandlbinder Date: Sun, 16 Apr 2023 17:02:58 +0200 Subject: [PATCH] Add Mullvad VPN --- nixos/kevin-tp/configuration.nix | 1 + nixos/modules/mullvad.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 nixos/modules/mullvad.nix diff --git a/nixos/kevin-tp/configuration.nix b/nixos/kevin-tp/configuration.nix index ecf2cf9..37f62c3 100644 --- a/nixos/kevin-tp/configuration.nix +++ b/nixos/kevin-tp/configuration.nix @@ -15,6 +15,7 @@ ../modules/yubikey.nix ../modules/gaming/steam.nix ../modules/gaming/helpers.nix + ../modules/mullvad.nix ]; sops.defaultSopsFile = ./secrets/secrets.yaml; diff --git a/nixos/modules/mullvad.nix b/nixos/modules/mullvad.nix new file mode 100644 index 0000000..9b739b3 --- /dev/null +++ b/nixos/modules/mullvad.nix @@ -0,0 +1,4 @@ +{pkgs, ...}: +{ + services.mullvad-vpn.enable = true; +}