puter/common/networking.nix

11 lines
159 B
Nix
Raw Normal View History

2024-12-27 00:20:40 +00:00
{pkgs, ...}: {
networking = {
nftables.enable = true;
useNetworkd = true;
};
environment.systemPackages = [
pkgs.nixos-firewall-tool
];
}