blob: 9e1ef855e8ce76e8af3f2fe1be820b85f677d33b (
plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
{ lib, config, ... }:
with lib; let
cfg = config.local;
in {
options.local = with lib.types; {
loader = mkOption {
type = enum [ "grub" "systemd-boot" ];
};
cpuVendor = mkOption {
type = enum [ "amd" "intel" ];
};
canTouchEfiVariables = mkOption {
type = bool;
};
videoDrivers = mkOption {
type = listOf str;
};
initrdModules = mkOption {
type = listOf str;
};
};
config = {
boot = {
loader = (if cfg.loader == "grub" then {
grub = {
enable = true;
device = "nodev";
efiSupport = true;
};
} else {
systemd-boot.enable = true;
}) // {
efi = {
inherit (cfg) canTouchEfiVariables;
};
};
initrd = let
crypt = cfg.crypt.toplevel;
headerPathEscaped = escapeShellArg "/initrd-boot/${crypt.headerFromBoot}";
in {
availableKernelModules = cfg.initrdModules;
supportedFilesystems = [ "vfat" ];
preDeviceCommands = optionalString (crypt != null) ''
mkdir -p `dirname ${headerPathEscaped}`
touch ${headerPathEscaped}
'';
preLVMCommands = optionalString cfg.portable ''
sleep 2 #TODO
'';
postMountCommands = let
fromRoot = path: escapeShellArg "/mnt-root/${path}";
auxOpen = aux: ''
cryptsetup -v open \
--header ${fromRoot aux.header} \
--key-file ${fromRoot aux.keyfile} \
${aux.device} ${aux.target}
'';
in concatStringsSep "\n" (map auxOpen cfg.crypt.aux);
luks.devices = mkIf (crypt != null) {
"${crypt.target}" = {
inherit (crypt) device;
header = "/initrd-boot/${crypt.headerFromBoot}";
preLVM = false;
preOpenCommands = ''
mount -o ro -t vfat ${escapeShellArg cfg.fs.boot.device} /initrd-boot
'';
postOpenCommands = ''
umount /initrd-boot
'';
};
};
#network = {
# enable = true;
# ssh = {
# enable = true;
# port = 2234;
# };
#};
};
};
hardware.cpu = let
ucode.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
in {
amd = mkIf (cfg.cpuVendor == "amd") ucode;
intel = mkIf (cfg.cpuVendor == "intel") ucode;
};
};
}
|