Add priority to networking

This commit is contained in:
Bun 2025-03-29 17:45:04 -04:00
parent 280df8c9c1
commit 44b4ec83c4
2 changed files with 26 additions and 2 deletions

View file

@ -12,6 +12,14 @@
networking = {
hostName = "redmond";
wireless.enable = true;
interfaces."wlp1s0".ipv4.addresses = [{
address = "192.168.2.200";
prefixLength = 24;
}];
defaultGateway = {
address = "192.168.2.1";
interface = "wlp1s0";
};
wg-quick.interfaces.wgc.address = [ "10.100.0.23/24" ];
};