15 lines
391 B
Nix
15 lines
391 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
useDHCP = false;
|
|
#wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
hostName = "hummelberg";
|
|
};
|
|
|
|
# Configure network proxy if necessary
|
|
# networking.proxy.default = "http://user:password@proxy:port/";
|
|
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
|
}
|