Switch to new subnet; Removing useless file

This commit is contained in:
Random936
2024-09-15 21:54:46 -07:00
parent e9c4627390
commit 50d2054bf2
4 changed files with 9 additions and 30 deletions

View File

@@ -9,12 +9,12 @@
networking.hostName = "sampledb-dev";
# Conigure a static IP address.
networking.defaultGateway = "192.168.8.1";
networking.nameservers = [ "192.168.8.1" ];
networking.defaultGateway = "192.168.100.1";
networking.nameservers = [ "192.168.100.1" ];
networking.firewall.allowedTCPPorts = [ 80 443 32400 ];
networking.interfaces.ens18.ipv4.addresses = [
{
address = "192.168.8.7";
address = "192.168.100.7";
prefixLength = 24;
}
];