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

35 lines
910 B
Nix
Raw Normal View History

2023-09-20 12:40:48 +02:00
{
2023-10-06 03:29:05 +02:00
# boot.loader.grub.enable = true;
# boot.loader.grub.enableCryptodisk = true;
2023-10-06 03:28:12 +02:00
# boot.initrd.luks.devices."crypted".device = "/dev/vda2";
2023-10-05 11:07:17 +02:00
services.btrfs.autoScrub.enable = true;
services.btrfs.autoScrub.interval = "weekly";
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-06 04:09:46 +02:00
type = "filesystem";
format = "ext4";
mountpoint = "/";
}; # content
2023-10-05 11:07:17 +02:00
}; # content
}; # luks.partitions
2023-10-05 06:01:40 +02:00
}; # partitions
2023-10-04 15:15:49 +02:00
}; # content
}; # disko.devices.disk.vda
} # root