blob: e3ff3653ac89ffe342321d729990449355f9a04a (
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
|
# usage: nix-instantiate --eval --json example.nix | jq -r .
with import <nixpkgs/lib>;
with builtins;
let
fun.filesystem = q: x: ''
mkfs.${x.format} ${q.device}
'';
fun.lvm = q: x: ''
pvcreate ${q.device}
vgcreate ${x.name} ${q.device}
${concatStringsSep "\n" (mapAttrsToList (name: f (q // { inherit name; vgname = x.name; device = null; /* ??? */ })) x.lvs)}
'';
fun.luks = q: x: ''
cryptsetup -q luksFormat ${q.device} ${x.keyfile}
cryptsetup luksOpen ${q.device} ${x.name} --key-file ${x.keyfile}
${f (q // { device = "/dev/mapper/${x.name}"; }) x.content}
'';
fun.partition = q: x:
throw "this should not happen, partitions are managed in fun.table";
fun.table = q: x: ''
parted -s -a optimal ${q.device} mklabel ${x.format}
${concatStringsSep "\n" (imap (i: part: "parted -s -a optimal ${q.device} mkpart ${part.part-type} ${part.fs-type or ""} ${part.start} ${part.end} ${optionalString (part.bootable or false) "\nparted -s -a optimal ${q.device} set ${toString i} boot on "}") x.partitions)}
${concatStrings (imap (i: x: f (q // { device = q.device + toString i; }) x.content) x.partitions)}
'';
fun.lv = q: x: ''
lvcreate -L ${x.size} -n ${q.name} ${q.vgname}
${f (q // { device = "/dev/${q.vgname}/${q.name}"; }) x.content}
'';
f = q: x: fun.${x.type} q x;
q0.device = "/dev/sda";
x0 = import ./example-data.nix;
in ''
set -efu
${f q0 x0}
''
|