Files
cyper-rpi/hosts/cyper-pi-2/configuration.nix

20 lines
329 B
Nix

{
lib,
...
}:
{
imports = [ ../services/k3s-agent.nix ];
# 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;
# }
# ];
};
}