This commit is contained in:
2025-05-22 00:56:50 -04:00
parent a0ed7b6497
commit e70818bdae
5 changed files with 366 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{
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;
}

View File

@@ -9,5 +9,6 @@
./services/services.nix
./fonts/fonts.nix
./hardware/hardware.nix
./networking/default.nix
];
}