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

60 lines
1.8 KiB
Nix
Raw Normal View History

2023-09-21 14:01:13 +02:00
{
2023-09-22 04:58:46 +02:00
boot.loader.grub.device = "/dev/sda";
2023-09-22 06:38:59 +02:00
boot.initrd.luks.devices."sda2".device = "/dev/sda2";
2023-09-22 06:23:50 +02:00
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";
2023-09-22 04:32:06 +02:00
partitions = [
2023-09-22 04:36:57 +02:00
{
2023-09-22 04:27:57 +02:00
name = "BOOT";
start = "0%";
end = "550MiB";
bootable = true;
flags = [ "esp" ];
fs-type = "fat32";
2023-09-21 14:01:13 +02:00
content = {
2023-09-22 04:27:57 +02:00
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
2023-09-21 14:01:13 +02:00
};
2023-09-22 04:32:06 +02:00
} # partition 1
2023-09-22 04:36:57 +02:00
{
2023-09-22 04:27:57 +02:00
name = "ROOT";
2023-09-22 04:39:18 +02:00
start = "550MiB";
end = "100%";
2023-09-22 04:27:57 +02:00
content = {
type = "luks";
name = "LUKS-ROOT";
extraOpenArgs = [ "--allow-discards" ];
settings.keyFile = "/tmp/secret.key";
content = {
type = "btrfs";
extraArgs = [ "-f" ];
subvolumes = {
"/root" = {
mountpoint = "/";
mountOptions = [ "compress=zstd" "noatime" ];
}; # root
"/home" = {
mountpoint = "/home";
mountOptions = [ "compress=zstd" "noatime" ];
}; # home
"/nix" = {
mountpoint = "/nix";
mountOptions = [ "compress=zstd" "noatime" ];
}; # nix
}; # subvolumes
}; # content.content
}; # content
} # partition 2
]; # partitions
}; # content
}; # sda
}; # disk
}; # disko.devices
} # root