nixos-config/1systems/cake/hardware-config.nix

16 lines
449 B
Nix
Raw Normal View History

2023-07-05 15:26:37 +02:00
{ pkgs, lib, nixos-hardware,... }:
{
2022-09-23 23:47:47 +02:00
environment.systemPackages = [ pkgs.libraspberrypi ];
2023-07-05 15:26:37 +02:00
imports = [ nixos-hardware.nixosModules.raspberry-pi-4 ];
2022-09-23 23:47:47 +02:00
boot.kernelPackages = pkgs.linuxPackages_rpi4;
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
2022-09-23 23:47:47 +02:00
options = [ "noatime" ];
};
};
2023-06-03 15:17:54 +02:00
hardware.raspberry-pi."4".fkms-3d.enable = true;
hardware.raspberry-pi."4".audio.enable = true;
}