tmnp: save current state

This commit is contained in:
silver 2023-01-15 15:10:40 +00:00
parent c819214902
commit 53aff5987f
4 changed files with 50 additions and 9 deletions

View file

@ -9,4 +9,7 @@
../applications/firewall.nix
];
# this server is teh firewall
skynet_firewall.enable = true;
}

16
machines/test02.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
imports = [
# base settings for alls ervers
./base.nix
# applications for this particular server
../applications/firewall.nix
];
skynet_firewall.forward = [
"ip saddr 193.1.99.123 tcp dport 443 counter packets 0 bytes 0 accept"
];
}