nixos-config/hosts/katana/networkd.nix
2023-07-21 02:12:27 -04:00

13 lines
No EOL
262 B
Nix

{ modulesPath, config, pkgs, lib, self, ... }:
{
networking = {
hostName = "katana"; # Define your hostname.
networkmanager.enable = true; #Enable Network Manager
firewall = {
allowedTCPPorts = [];
allowedUDPPorts = [];
};
};
}