nix/nixos/hosts/warsaw-ovh-01/disks.nix

60 lines
1.4 KiB
Nix
Raw Normal View History

2024-07-12 07:40:25 +02:00
{
2024-07-14 14:14:13 +02:00
disko.devices = {
disk = {
sda = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
ESP = {
size = "500M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
luks = {
size = "100%";
content = {
type = "luks";
name = "crypted";
settings.allowDiscards = true;
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
2024-07-12 07:40:25 +02:00
};
2024-07-14 13:25:12 +02:00
};
};
2024-07-14 14:14:13 +02:00
sdb = {
type = "disk";
device = "/dev/sdb";
2024-07-14 13:25:12 +02:00
content = {
2024-07-14 14:14:13 +02:00
type = "gpt";
partitions = {
Storage = {
2024-07-14 14:18:18 +02:00
size = "100%";
2024-07-14 14:14:13 +02:00
content = {
2024-07-14 14:18:18 +02:00
type = "luks";
name = "storage-crypted";
settings.allowDiscards = true;
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/Storage";
};
2024-07-14 14:14:13 +02:00
};
};
};
2024-07-14 13:25:12 +02:00
};
2024-07-14 14:15:37 +02:00
};
2024-07-14 13:25:12 +02:00
};
2024-07-14 13:45:29 +02:00
};
2024-07-14 13:25:12 +02:00
}