mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-11 23:50:05 +01:00
example: sort and remove dead code
This commit is contained in:
parent
c47d8972ad
commit
6fcd7fc2c4
1 changed files with 23 additions and 31 deletions
|
|
@ -5,50 +5,42 @@ with builtins;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
f = q: x: fun.${x.type} q x;
|
||||||
|
|
||||||
fun.filesystem = q: x: ''
|
fun.filesystem = q: x: ''
|
||||||
mkfs.${x.format} ${q.device}
|
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: ''
|
fun.luks = q: x: ''
|
||||||
cryptsetup -q luksFormat ${q.device} ${x.keyfile}
|
cryptsetup -q luksFormat ${q.device} ${x.keyfile}
|
||||||
cryptsetup luksOpen ${q.device} ${x.name} --key-file ${x.keyfile}
|
cryptsetup luksOpen ${q.device} ${x.name} --key-file ${x.keyfile}
|
||||||
|
${f { device = "/dev/mapper/${x.name}"; } x.content}
|
||||||
${f (q // { device = "/dev/mapper/${x.name}"; }) x.content}
|
|
||||||
'';
|
|
||||||
|
|
||||||
fun.partition = q: x:
|
|
||||||
"(part ${toString (map (f q) (children x))})";
|
|
||||||
|
|
||||||
fun.table = q: x: ''
|
|
||||||
parted -s -a optimal ${q.device} mklabel ${x.format}
|
|
||||||
${concatStrings (imap (i: part: " \nparted -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: ''
|
fun.lv = q: x: ''
|
||||||
lvcreate -L ${x.size} -n ${q.name} ${q.vgname}
|
lvcreate -L ${x.size} -n ${q.name} ${q.vgname}
|
||||||
|
${f { device = "/dev/${q.vgname}/${q.name}"; } x.content}
|
||||||
${f (q // { device = "/dev/${q.vgname}/${q.name}"; }) x.content}
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
children = x: {
|
fun.lvm = q: x: ''
|
||||||
lvm = attrValues x.lvs;
|
pvcreate ${q.device}
|
||||||
luks = [x.content];
|
vgcreate ${x.name} ${q.device}
|
||||||
partition = [x.content];
|
${concatStrings (mapAttrsToList (name: f { inherit name; vgname = x.name; }) x.lvs)}
|
||||||
table = x.partitions;
|
'';
|
||||||
lv = [x.content];
|
|
||||||
}.${x.type};
|
|
||||||
|
|
||||||
f = q: x: fun.${x.type} q x;
|
fun.partition = q: x: ''
|
||||||
|
parted -s ${q.device} mkpart ${x.part-type} ${x.fs-type or ""} ${x.start} ${x.end}
|
||||||
|
${optionalString (x.bootable or false) ''
|
||||||
|
parted -s ${q.device} set ${toString q.index} boot on
|
||||||
|
''}
|
||||||
|
${f { device = q.device + toString q.index; } x.content}
|
||||||
|
'';
|
||||||
|
|
||||||
|
fun.table = q: x: ''
|
||||||
|
parted -s -a optimal ${q.device} mklabel ${x.format}
|
||||||
|
${concatStrings (imap (index: f (q // { inherit index; })) x.partitions)}
|
||||||
|
'';
|
||||||
|
|
||||||
q0.device = "/dev/sda";
|
|
||||||
x0 = import ./config.nix;
|
|
||||||
in
|
in
|
||||||
f q0 x0
|
|
||||||
|
f { device = "/dev/sda"; } (import ./config.nix)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue