2024-11-15 11:01:33 -05:00

12 lines
239 B
Nix

{ pkgs, service_configs, ... }:
{
# network namespace that is proxied through mullvad
vpnNamespaces.wg = {
enable = true;
wireguardConfigFile = ../secrets/wg0.conf;
accessibleFrom = [
# "192.168.0.0/24"
];
};
}