12 lines
232 B
Nix
12 lines
232 B
Nix
{ pkgs, ... }: {
|
|
|
|
imports = [
|
|
# import it in so the options are available
|
|
../applications/firewall.nix
|
|
];
|
|
|
|
skynet_firewall.forward = [
|
|
"ip saddr 193.1.99.123 tcp dport 443 counter packets 0 bytes 0 accept"
|
|
];
|
|
|
|
}
|