blob: 66531e5d8185e6af5a787193f3dade8b14d429a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, lib, pkgs, ... }:
{
boot = {
initrd.luks.devices = [ { name = "ssd"; device = "/dev/disk/by-uuid/sH2z1p-XRak-v8eq-YLMb-XIk1-5j8o-psLUa5"; }
];
loader = {
gummiboot.enable = true;
efi.canTouchEfiVariables = true;
};
};
}
|