summaryrefslogtreecommitdiff
path: root/hel/boot.nix
blob: c3acf74684989acf4f51b382f440d716154ac74e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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"];
  };
}