mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 00:52:56 +00:00
10 lines
215 B
Nix
10 lines
215 B
Nix
{ pkgs, ... }: {
|
|
|
|
# Needs to be run at boot for Oracle firewall
|
|
systemd.services.openIpTables = {
|
|
script = "${pkgs.iptables}/bin/iptables -I INPUT -j ACCEPT";
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
|
|
}
|