nixos/machines/raspberry-pi-3/hardware-configuration.nix

12 lines
162 B
Nix
Raw Normal View History

2023-09-10 15:01:32 +02:00
{ config, pkgs, lib, ... }:
{
boot.kernelParams = [
"console=ttyS1,115200n8"
];
environment.systemPackages = with pkgs; [
libraspberrypi
];
}