nix/nixos/hosts/osaka-vultr-01/disks.nix

34 lines
739 B
Nix
Raw Normal View History

2023-09-20 12:40:48 +02:00
{
2023-10-05 06:08:37 +02:00
boot.loader.grub = {
enable = true;
2023-10-05 07:44:34 +02:00
device = "/dev/vda";
enableCryptodisk = true;
2023-10-05 06:08:37 +02:00
};
2023-10-04 15:15:49 +02:00
disko.devices.disk.vda = {
device = "/dev/vda";
2023-10-05 06:01:40 +02:00
type = "disk";
2023-10-04 15:15:49 +02:00
content = {
2023-10-05 06:01:40 +02:00
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
}; # partitions.boot
luks = {
size = "100%";
2023-10-04 15:15:49 +02:00
content = {
type = "luks";
2023-10-05 06:01:40 +02:00
name = "crypted";
2023-10-04 15:15:49 +02:00
extraOpenArgs = [ "--allow-discards" ];
content = {
2023-10-05 11:04:04 +02:00
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
2023-10-05 06:01:40 +02:00
}; # partitions
2023-10-04 15:15:49 +02:00
}; # content
}; # disko.devices.disk.vda
} # root