Files
cyper-rpi/hosts/rpi-4/configuration.nix
2026-02-11 11:04:59 +01:00

13 lines
222 B
Nix

{ config, pkgs, primaryUser, ... }:
{
# Host-specific packages
environment.systemPackages = with pkgs; [
# python3
# nodejs
];
# Any RPi 4 specific customizations go here
networking.hostName = "rpi-4";
}