about summary refs log tree commit diff
path: root/users/sterni/machines/edwin/hardware.nix
blob: 258410894a803127a0705e8ff650b573fe993933 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
{ config, lib, pkgs, depot, ... }:

{
  config = {
    boot = {
      loader.grub = {
        enable = true;
        version = 2;
        # TODO(sterni): use /dev/disk/by-id ?
        devices = [
          "/dev/sda"
          "/dev/sdb"
        ];
      };

      kernelModules = [
        "kvm-intel"
      ];

      initrd.availableKernelModules = [
        "ahci"
        "sd_mod"
        "btrfs"
        "realtek"
        "r8169"
      ];
    };

    boot.initrd.luks.devices = {
      "crypt1".device = "/dev/disk/by-uuid/02ac34ee-be10-401b-90c2-1c6aa54c4d5f";
      "crypt2".device = "/dev/disk/by-uuid/7ce07191-e704-4aed-a60f-dfa3ce386b26";
      "crypt-swap1".device = "/dev/disk/by-uuid/fec7155c-6a65-4f25-b271-43763e4c31eb";
      "crypt-swap2".device = "/dev/disk/by-uuid/7b0a03fc-51de-4578-9811-94b00df09d88";
    };

    fileSystems = {
      "/" = {
        device = "/dev/disk/by-label/root";
        fsType = "btrfs";
      };

      "/boot" = {
        device = "/dev/disk/by-label/boot";
        fsType = "btrfs";
      };
    };

    swapDevices = [
      { device = "/dev/disk/by-label/swap1"; }
      { device = "/dev/disk/by-label/swap2"; }
    ];

    powerManagement.cpuFreqGovernor = "performance";
    hardware = {
      enableRedistributableFirmware = true;
      cpu.intel.updateMicrocode = true;
    };

    nix.settings = {
      max-jobs = 2;
      cores = 4;
    };
  };
}