nixos-config/machine/pc-installer/disko.nix

60 lines
1.8 KiB
Nix
Raw Normal View History

2024-11-05 08:11:22 +00:00
{
disko.devices = {
disk = {
2024-11-08 09:04:56 +00:00
installer = {
2024-11-05 08:11:22 +00:00
type = "disk";
2024-11-05 08:58:31 +00:00
device = "/dev/disk/by-id/ata-WDC_WD10SPZX-22Z10T0_WD-WXL1A87JL6DC";
2024-11-05 08:11:22 +00:00
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
2024-11-09 14:02:26 +00:00
mountOptions = [ "umask=0077" ];
2024-11-05 08:11:22 +00:00
};
};
root = {
2024-11-05 08:58:31 +00:00
size = "100%";
2024-11-05 08:11:22 +00:00
content = {
type = "btrfs";
2024-11-09 14:02:26 +00:00
extraArgs = [ "-f" ]; # Override existing partition
2024-11-05 08:11:22 +00:00
# Subvolumes must set a mountpoint in order to be mounted,
# unless their parent is mounted
subvolumes = {
# Subvolume name is different from mountpoint
"/root" = {
2024-11-09 14:02:26 +00:00
mountOptions = [ "compress=zstd" ];
2024-11-05 08:11:22 +00:00
mountpoint = "/";
};
# Subvolume name is the same as the mountpoint
"/persistent" = {
2024-11-09 14:02:26 +00:00
mountOptions = [ "compress=zstd" ];
2024-11-05 08:11:22 +00:00
mountpoint = "/persistent";
};
# Parent is not mounted so the mountpoint must be set
"/nix" = {
2024-11-09 14:02:26 +00:00
mountOptions = [
"compress=zstd"
"noatime"
];
2024-11-05 08:11:22 +00:00
mountpoint = "/nix";
};
};
mountpoint = "/partition-root";
};
};
};
};
};
};
};
}