This commit is contained in:
2025-11-26 17:42:05 +01:00
parent c66dd11217
commit f8fca9092d
4 changed files with 79 additions and 197 deletions

16
hosts/rpi4-1/default.nix Normal file
View File

@@ -0,0 +1,16 @@
{ ... }:
{
import = [
../rpi4
];
networking = {
hostName = "nix-rpi1";
interfaces.end0.ipv4.addresses = [
{
address = "192.168.2.35";
prefixLength = 24;
}
];
};
}