feat: switched to hardcoded ip addresses

This commit is contained in:
Patrick 2023-09-01 21:20:32 +02:00
parent 92ae51fe05
commit 69cf9a273c
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
4 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@
};
systemd.network.networks = {
"01-lan1" = {
DHCP = "yes";
address = ["192.168.178.30/24"];
matchConfig.MACAddress = config.secrets.secrets.local.networking.lan1.mac;
dns = ["192.168.178.2"];
networkConfig = {

View file

@ -11,7 +11,7 @@
systemd.network.networks = {
"01-lan1" = {
DHCP = "yes";
address = ["192.168.178.31/24"];
matchConfig.MACAddress = config.secrets.secrets.local.networking.lan1.mac;
networkConfig = {
IPv6PrivacyExtensions = "yes";

View file

@ -4,7 +4,7 @@
};
systemd.network.networks = {
"01-lan1" = {
DHCP = "yes";
address = ["192.168.178.32/24"];
matchConfig.MACAddress = config.secrets.secrets.local.networking.lan1.mac;
dns = ["192.168.178.2"];
networkConfig = {

View file

@ -18,19 +18,19 @@
};
"patricknix" = {
hostname = "patricknix.local";
hostname = "192.168.178.31";
user = "root";
inherit identityFile;
};
"testienix" = {
hostname = "192.168.178.74";
hostname = "192.168.178.32";
user = "root";
inherit identityFile;
};
"desktopnix" = {
hostname = "192.168.178.176";
hostname = "192.168.178.30";
user = "root";
inherit identityFile;
};