Added: Static IP Configuration

This commit is contained in:
2026-02-11 23:50:01 +01:00
parent 521610f044
commit 779fca1741
4 changed files with 69 additions and 22 deletions

View File

@@ -0,0 +1,23 @@
{
#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;
}
];
};
}