Configure static IPs, but in Nix

This commit is contained in:
Bun 2025-03-16 02:41:43 -04:00
parent d3529bbcdb
commit 0423c6e180
6 changed files with 27 additions and 5 deletions

View file

@ -13,6 +13,14 @@
networking = {
hostName = "midas";
hostId = "38ba3f57";
interfaces."enp0s31f6".ipv4.addresses = [{
address = "10.2.0.1";
prefixLength = 8;
}];
defaultGateway = {
address = "10.1.0.1";
interface = "enp0s31f6";
};
};
system = {