nix/nixos/hosts/nixos-vm-02/disks.nix

57 lines
1.5 KiB
Nix
Raw Normal View History

2023-09-21 14:01:13 +02:00
{
disko.devices = {
disk = {
sda = {
device = "/dev/sda";
content = {
2023-09-22 03:45:07 +02:00
type = "table";
format = "gpt";
partitions = [
{
name = "BOOT";
label = "BOOT";
start = "0%";
end = "550MiB";
bootable = true;
flags = [ "esp" ];
fs-type = "fat32";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
2023-09-21 14:01:13 +02:00
};
2023-09-22 03:45:07 +02:00
}
{
name = "ROOT";
label = "ROOT";
size = "100%";
content = {
type = "luks";
name = "LUKS-ROOT";
extraOpenArgs = [ "--allow-discards" ];
settings.keyFile = "/tmp/secret.key";
2023-09-21 14:01:13 +02:00
content = {
2023-09-22 03:45:07 +02:00
type = "btrfs";
extraArgs = [ "-f" ];
subvolumes = {
"/root" = {
mountpoint = "/";
mountOptions = [ "compress=zstd" "noatime" ];
};
"/home" = {
mountpoint = "/home";
mountOptions = [ "compress=zstd" "noatime" ];
};
"/nix" = {
mountpoint = "/nix";
mountOptions = [ "compress=zstd" "noatime" ];
2023-09-21 14:01:13 +02:00
};
};
};
2023-09-22 03:45:07 +02:00
}
];
2023-09-21 14:01:13 +02:00
};
};
};
};
}