Files
nix-config/hosts/rpi4-1/default.nix
2025-11-26 18:14:43 +01:00

17 lines
217 B
Nix

{ ... }:
{
imports = [
../rpi4
];
networking = {
hostName = "nix-rpi1";
interfaces.end0.ipv4.addresses = [
{
address = "192.168.2.35";
prefixLength = 24;
}
];
};
}