host glonass got added

This commit is contained in:
2026-07-09 22:26:14 +02:00
parent 0634620eee
commit a70f619feb
11 changed files with 291 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ wireguard-tools ];
services = {
mullvad-vpn = {
enable = true;
package = pkgs.mullvad-vpn;
};
};
networking = {
networkmanager = {
enable = true;
};
firewall = {
enable = false;
checkReversePath = false;
allowedTCPPorts = [];
allowedUDPPorts = [];
};
};
}