13 lines
222 B
Nix
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";
|
|
}
|