11 lines
182 B
Nix
11 lines
182 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "nixos-firewall-tool";
|
|
text = builtins.readFile ./nixos-firewall-tool.sh;
|
|
runtimeInputs = with pkgs; [
|
|
iptables
|
|
];
|
|
}
|
|
|