nixos/machines/serverle/hardware-configuration.nix

15 lines
209 B
Nix
Raw Normal View History

{ pkgs, ... }:
2020-11-16 21:14:46 +01:00
{
hardware = {
deviceTree = {
enable = true;
filter = "*rpi-4-*.dtb";
2022-11-09 22:21:41 +01:00
};
};
environment.systemPackages = with pkgs; [
libraspberrypi
raspberrypi-eeprom
];
2020-11-16 21:14:46 +01:00
}