aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/mullvad-vpn
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hosts/mullvad-vpn')
-rw-r--r--modules/hosts/mullvad-vpn/default.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/hosts/mullvad-vpn/default.nix b/modules/hosts/mullvad-vpn/default.nix
deleted file mode 100644
index 80451a5..0000000
--- a/modules/hosts/mullvad-vpn/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ config, lib, pkgs, ... }:
-let
- cfg = config.nx.mullvad-vpn;
- inherit (lib) mkOption types mkIf;
-in
-{
- options.nx.mullvad-vpn = {
- enable = mkOption {
- description = "Privacy focues vpn";
- type = types.bool;
- default = false;
- };
- };
- config = mkIf cfg.enable {
- services.mullvad-vpn.enable = true;
- environment.systemPackages = [ pkgs.mullvad-vpn ];
- };
-}