This commit is contained in:
mjallen18
2025-09-05 11:25:33 -05:00
parent 3c1b5d5072
commit 73cb9010e2
2 changed files with 17 additions and 2 deletions

View File

@@ -44,11 +44,11 @@
network = { network = {
hostName = "pi4"; hostName = "pi4";
ipv4 = { ipv4 = {
interface = "end0";
method = "manual"; method = "manual";
address = "10.0.1.2/24"; address = "10.0.1.2/24";
gateway = "10.0.1.1"; gateway = "10.0.1.1";
dns = "1.1.1.1"; dns = "1.1.1.1";
interface = "enabcm6e4ei0";
}; };
firewall = { firewall = {
enable = true; enable = true;
@@ -58,11 +58,22 @@
}; };
networkmanager = { networkmanager = {
profiles = { profiles = {
"static-enabcm6e4ei0" = { "static-end0" = {
type = "ethernet"; type = "ethernet";
}; };
}; };
}; };
}; };
}; };
virtualisation = {
waydroid.enable = false;
libvirtd.enable = false;
};
# Root user configuration - explicit to avoid conflicts with home-manager
users.users.root = {
isSystemUser = true;
isNormalUser = false;
};
} }

View File

@@ -30,6 +30,10 @@
}; };
network = { network = {
hostName = "pi5"; hostName = "pi5";
firewall = {
enable = true;
allowPing = true;
};
}; };
}; };
} }