1.2 KiB
1.2 KiB
Network Configuration
Open the network configuration.
{ config, lib, pkgs, ... }:
{
This system is called nixos
.
networking.hostName = "nixos";
I use NetworkManager to configure my network.
networking.networkmanager.enable = true;
Enable Bluetooth at boot.
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
Enable printing.
services.printing.enable = true;
Enable SSH.
services.openssh.enable = true;
Set up my firewall.
networking.firewall = {
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
};
Close the network configuration.
}