13 lines
273 B
Nix
13 lines
273 B
Nix
{outputs, ...}: {
|
|
# Networking settings
|
|
networking = {
|
|
# Enable firewall
|
|
firewall = {
|
|
allowPing = false;
|
|
extraInputRules = ''
|
|
ip saddr { ${outputs.ips.server}, ${outputs.ips.wgSpan}.1 } accept comment "Accept Server"
|
|
'';
|
|
};
|
|
};
|
|
}
|