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; +}