summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/common/services.nix5
-rw-r--r--nixos/hosts/apocalypse/firewall.nix2
2 files changed, 6 insertions, 1 deletions
diff --git a/nixos/common/services.nix b/nixos/common/services.nix
index d63e547..8a73d42 100644
--- a/nixos/common/services.nix
+++ b/nixos/common/services.nix
@@ -19,4 +19,9 @@
};
services.spice-vdagentd.enable = true;
+ services.mullvad-vpn = {
+ enable = true;
+ package = pkgs.mullvad-vpn;
+ };
+
}
diff --git a/nixos/hosts/apocalypse/firewall.nix b/nixos/hosts/apocalypse/firewall.nix
index b2c17af..5c73966 100644
--- a/nixos/hosts/apocalypse/firewall.nix
+++ b/nixos/hosts/apocalypse/firewall.nix
@@ -32,7 +32,7 @@ let
in
{
networking.firewall = {
- enable = true;
+ enable = false;
allowedTCPPorts = baseTCP;
allowedUDPPorts = baseUDP;
allowedUDPPortRanges = baseUDPRanges;