nixcfg/hosts/lavaridge/disko.nix

57 lines
1.7 KiB
Nix
Raw Normal View History

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