nix/modules/networking.nix

12 lines
216 B
Nix

{ ... }:
{
networking.hostId = "25698a58";
networking.hostName = "nixos";
networking.wireless = { iwd = { enable = true; }; };
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 ];
};
}