nixos-config/machine/not522/disko.nix

67 lines
2 KiB
Nix
Raw Normal View History

2024-10-29 12:29:05 +00:00
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/disk/by-id/nvme-eui.002538b371b824db";
content = {
type = "gpt";
partitions = {
ESP = {
priority = 1;
name = "ESP";
start = "1M";
end = "1024M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
2024-11-09 14:02:26 +00:00
mountOptions = [ "umask=0077" ];
2024-10-29 12:29:05 +00:00
};
};
root = {
2024-10-30 08:06:52 +00:00
end = "-8G";
2024-10-29 12:29:05 +00:00
content = {
type = "btrfs";
2024-11-09 14:02:26 +00:00
extraArgs = [ "-f" ]; # Override existing partition
2024-10-29 12:29:05 +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-10-29 12:29:05 +00:00
mountpoint = "/";
};
# Subvolume name is the same as the mountpoint
"/persistent" = {
2024-11-09 14:02:26 +00:00
mountOptions = [ "compress=zstd" ];
2024-10-29 12:29:05 +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-10-29 12:29:05 +00:00
mountpoint = "/nix";
};
};
mountpoint = "/partition-root";
};
};
swap = {
size = "100%";
content = {
type = "swap";
discardPolicy = "both";
resumeDevice = true; # resume from hiberation from this device
};
};
};
};
};
};
};
}