dotfiles/modules/home/cli/utilities/ipTables/default.nix

12 lines
110 B
Nix
Raw Normal View History

2025-07-01 15:39:57 -05:00
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
iptables
;
};
}