Files
nix-config/system/networking/default.nix
2025-05-22 00:56:50 -04:00

17 lines
326 B
Nix

{
config,
pkgs,
...
}: {
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
networking.interfaces = {
enp0s31f6 = {};
wlp4s0 = {};
};
networking.networkmanager.enable = true;
}