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";
|
2023-10-05 07:24:19 +02:00
|
|
|
enableCryptodisk = true;
|
2023-10-05 06:08:37 +02:00
|
|
|
};
|
2023-10-05 10:28:32 +02:00
|
|
|
# boot.initrd.luks.devices."DISK".device = "/dev/vda2";
|
2023-10-04 15:15:49 +02:00
|
|
|
services.btrfs.autoScrub.enable = true;
|
|
|
|
services.btrfs.autoScrub.interval = "weekly";
|
|
|
|
|
|
|
|
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
|