summaryrefslogtreecommitdiffstats
path: root/1systems/cake/hardware-config.nix
blob: a9633af33df5c8f5158ca398ef7c1dc633fe12fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs, lib, nixos-hardware,... }:
{
  environment.systemPackages = [ pkgs.libraspberrypi ];
  imports = [ nixos-hardware.nixosModules.raspberry-pi-4 ];
  boot.kernelPackages = pkgs.linuxPackages_rpi4;
  fileSystems = {
    "/" = {
      device = "/dev/disk/by-label/NIXOS_SD";
      fsType = "ext4";
      options = [ "noatime" ];
    };
  };
  hardware.raspberry-pi."4".fkms-3d.enable = true; 
  hardware.raspberry-pi."4".audio.enable = true;  
}