Fixed: Network configuration; Switched to dhcp

This commit is contained in:
2026-02-16 15:57:49 +01:00
parent 3ebd34c830
commit efd4fd98db
4 changed files with 62 additions and 171 deletions

View File

@@ -7,18 +7,15 @@
# Any RPi 4 specific customizations go here
networking = {
hostName = lib.mkForce "cyper-pi-1";
interfaces.end0 = {
useDHCP = false;
ipv4.addresses = [
{
address = "192.168.2.41";
prefixLength = 24;
}
];
};
# interfaces.end0.ipv4.addresses = [
# {
# address = "192.168.2.41";
# prefixLength = 24;
# }
# ];
firewall = {
enable = false;
};
# firewall = {
# enable = false;
# };
};
}