nixos/machines/serverle/hardware-configuration.nix

16 lines
246 B
Nix
Raw Permalink Normal View History

{ pkgs, ... }:
2020-11-16 21:14:46 +01:00
{
hardware = {
2023-11-19 18:26:20 +01:00
raspberry-pi."4".leds = {
eth.disable = true;
act.disable = true;
pwr.disable = true;
};
2022-11-09 22:21:41 +01:00
};
environment.systemPackages = with pkgs; [
libraspberrypi
raspberrypi-eeprom
];
2020-11-16 21:14:46 +01:00
}