about summary refs log tree commit diff stats
path: root/hosts/apzu/hardware.nix
blob: 29223e29a73131fa9ea49a9178f27c2213683fc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  modulesPath,
  pkgs,
  ...
}: {
  imports = [
    (modulesPath + "/installer/scan/not-detected.nix") # TODO: is this necessary?
  ];

  soispha.disks = {
    enable = true;
    disk = "/dev/disk/by-id/nvme-INTEL_SSDPEKNU512GZH_PHKA1481032A512A_1";
    ssd = true;
    swap = {
      uuid = "c94cd20a-dd3c-436f-9841-6fe92e5c8719";
      resumeOffset = "533760";
    };
  };

  boot = {
    kernelModules = ["kvm-intel" "rtw89"];

    initrd.availableKernelModules = ["xhci_pci" "vmd" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
  };

  hardware = {
    bluetooth = {
      enable = true;
      # Avoid some battery drain, requires a `power on` in bluetoothctl
      powerOnBoot = false;
    };

    #   opengl.extraPackages = with pkgs; [
    #     rocm-opencl-icd # open-cl
    #     amdvlk # or directly through mesa
    #     amd-media-driver # libva
    #   ];
    #
    #   # Force radv, TODO: is this logical?
    #   environment.variables.AMD_VULKAN_ICD = "RADV";

    cpu.intel.updateMicrocode = true; # Why not?
    opengl = {
      enable = true;
      extraPackages = with pkgs; [
        vaapiVdpau
        libvdpau-va-gl
      ];
    };
  };
}