blob: 73472b491aca6a05b4afb99987ceb42f4791be9a (
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" "i915.preliminary_hw_support=1"];
};
}
|