summaryrefslogtreecommitdiff
path: root/hel/boot.nix
blob: 318b860b2441d2c960b05c17f0c75be3b2b4b15f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, lib, pkgs, ... }:

{
  boot = {
    initrd.luks.devices = [ { name = "ssd"; device = "/dev/disk/by-uuid/9e9e430c-f9cd-418e-b66b-60f81ba9293b"; }
                          ];
    loader = {
      systemd-boot.enable = true;
      efi.canTouchEfiVariables = true;
    };

    tmpOnTmpfs = true;

    kernelParams = ["intel_pstate=no_hwp"];

    blacklistedKernelModules = ["snd_soc_skl"];
  };
}