24 lines
353 B
Nix
24 lines
353 B
Nix
{
|
|
#pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
# Host-specific packages
|
|
#environment.systemPackages = with pkgs; [
|
|
# python3
|
|
# nodejs
|
|
#];
|
|
|
|
# Any RPi 4 specific customizations go here
|
|
networking = {
|
|
hostName = "cyper-pi-1";
|
|
interfaces.end0.ipv4.addresses = [
|
|
{
|
|
address = "192.168.2.41";
|
|
prefixLength = 24;
|
|
}
|
|
];
|
|
};
|
|
}
|