25 lines
352 B
Nix
25 lines
352 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
# 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;
|
|
}
|
|
];
|
|
};
|
|
|
|
firewall = {
|
|
enable = false;
|
|
};
|
|
};
|
|
}
|