nixos/machines/test02.nix

13 lines
232 B
Nix
Raw Normal View History

{ pkgs, ... }: {
2023-01-15 15:10:40 +00:00
imports = [
# import it in so the options are available
../applications/firewall.nix
2023-01-15 15:10:40 +00:00
];
skynet_firewall.forward = [
"ip saddr 193.1.99.123 tcp dport 443 counter packets 0 bytes 0 accept"
];
}