nixcfg/hosts/rustboro/disko.nix

57 lines
1.7 KiB
Nix
Raw Normal View History

2024-04-01 20:29:48 -04:00
{
disko.devices = {
disk = {
vdb = {
2024-04-01 20:29:48 -04:00
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
ESP = {
priority = 1;
name = "ESP";
start = "1M";
end = "1024M";
2024-04-01 20:29:48 -04:00
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "btrfs";
extraArgs = [ "-f" ]; # Override existing partition
# Subvolumes must set a mountpoint in order to be mounted,
# unless their parent is mounted
subvolumes = {
# Subvolume name is different from mountpoint
"rootfs" = { mountpoint = "/"; };
# For use with future impermanence setups
"persist" = {
mountpoint = "/persist";
mountOptions = [ "compress=zstd" "noatime" ];
};
# Subvolume name is the same as the mountpoint
"home" = {
mountOptions = [ "compress=zstd" ];
mountpoint = "/home";
};
# Parent is not mounted so the mountpoint must be set
"nix" = {
mountOptions = [ "compress=zstd" "noatime" ];
mountpoint = "/nix";
};
};
mountpoint = "/partition-root";
2024-04-01 20:29:48 -04:00
};
};
};
};
};
};
};
}