This commit is contained in:
mjallen18
2025-09-05 12:07:41 -05:00
parent 73cb9010e2
commit c7ac858ec5
5 changed files with 28 additions and 237 deletions

View File

@@ -30,9 +30,25 @@
};
network = {
hostName = "pi5";
ipv4 = {
method = "manual";
address = "10.0.1.2/24";
gateway = "10.0.1.1";
dns = "1.1.1.1";
interface = "end0";
};
firewall = {
enable = true;
allowPing = true;
allowedTCPPorts = [ 53 ];
allowedUDPPorts = [ 53 ];
};
networkmanager = {
profiles = {
"static-end0" = {
type = "ethernet";
};
};
};
};
};