nixos/machines/raspberry-pi-3/hardware-configuration.nix
2024-11-09 18:23:13 +01:00

12 lines
162 B
Nix

{ config, pkgs, lib, ... }:
{
boot.kernelParams = [
"console=ttyS1,115200n8"
];
environment.systemPackages = with pkgs; [
libraspberrypi
];
}