11 lines
172 B
Nix
11 lines
172 B
Nix
{ attrName, pkgs, ... }:
|
|
{
|
|
networking = {
|
|
hostName = attrName;
|
|
nftables.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
pkgs.nixos-firewall-tool
|
|
];
|
|
}
|