26 lines
403 B
Nix
26 lines
403 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
#imports = [ ];
|
|
|
|
# Any RPi 4 specific customizations go here
|
|
networking = {
|
|
hostName = lib.mkForce "cyper-pi-2";
|
|
# interfaces.end0.ipv4.addresses = [
|
|
# {
|
|
# address = "192.168.2.41";
|
|
# prefixLength = 24;
|
|
# }
|
|
# ];
|
|
|
|
firewall = {
|
|
enable = true;
|
|
allowPing = true;
|
|
allowedTCPPorts = [ ];
|
|
};
|
|
};
|
|
}
|