update disks for warsaw
This commit is contained in:
parent
4c48afb3be
commit
07a9a1c733
1 changed files with 48 additions and 29 deletions
|
@ -1,32 +1,28 @@
|
||||||
{ lib, ... }:
|
|
||||||
{
|
{
|
||||||
disko.devices.disk = lib.genAttrs [ "sda" "sdb" ] (disk: {
|
disko.devices = {
|
||||||
|
disk = {
|
||||||
|
sda = {
|
||||||
type = "disk";
|
type = "disk";
|
||||||
device = "/dev/${disk}";
|
device = "/dev/sda";
|
||||||
content = {
|
content = {
|
||||||
type = "gpt";
|
type = "gpt";
|
||||||
partitions = {
|
partitions = {
|
||||||
boot = {
|
ESP = {
|
||||||
size = "1M";
|
size = "500M";
|
||||||
type = "EF02"; # for grub MBR
|
type = "EF00";
|
||||||
};
|
|
||||||
mdadm = {
|
|
||||||
size = "100%";
|
|
||||||
content = {
|
content = {
|
||||||
type = "mdraid";
|
type = "filesystem";
|
||||||
name = "raid1";
|
format = "vfat";
|
||||||
|
mountpoint = "/boot";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
luks = {
|
||||||
};
|
size = "100%";
|
||||||
});
|
|
||||||
disko.devices.mdadm = {
|
|
||||||
raid1 = {
|
|
||||||
type = "mdadm";
|
|
||||||
level = 1;
|
|
||||||
content = {
|
content = {
|
||||||
type = "luks";
|
type = "luks";
|
||||||
name = "crypted";
|
name = "crypted";
|
||||||
|
settings.allowDiscards = true;
|
||||||
|
passwordFile = "/tmp/secret.key";
|
||||||
content = {
|
content = {
|
||||||
type = "filesystem";
|
type = "filesystem";
|
||||||
format = "ext4";
|
format = "ext4";
|
||||||
|
@ -35,4 +31,27 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
sdb = {
|
||||||
|
type = "disk";
|
||||||
|
device = "/dev/sdb";
|
||||||
|
content = {
|
||||||
|
type = "gpt";
|
||||||
|
partitions = {
|
||||||
|
Storage = {
|
||||||
|
type = "luks";
|
||||||
|
name = "storage-crypted";
|
||||||
|
settings.allowDiscards = true;
|
||||||
|
content = {
|
||||||
|
type = "filesystem";
|
||||||
|
format = "ext4";
|
||||||
|
mountpoint = "/Storage";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue