dotfiles/modules/services/oracle.nix
2022-10-02 15:09:54 +00:00

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" ];
};
}