12 lines
239 B
Nix
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"
|
|
];
|
|
};
|
|
}
|