.hive/modules/system/network.nix
2024-04-07 16:28:12 +02:00

13 lines
419 B
Nix

{ config, ... }:
{
networking.hostName = "comfy-station"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
}