1
0
Fork 0
puter/common/networking.nix

12 lines
172 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{ attrName, pkgs, ... }:
{
networking = {
hostName = attrName;
nftables.enable = true;
};
2024-12-27 01:20:40 +01:00
environment.systemPackages = [
pkgs.nixos-firewall-tool
];
}