nixos/hosts/common/disks/btrfs/legacy.nix

58 lines
1.4 KiB
Nix
Raw Normal View History

{
disko.devices = {
disk = {
main = {
type = "disk";
2025-01-25 18:57:48 +00:00
device = "/dev/sda";
content = {
2025-01-25 18:57:48 +00:00
type = "gpt";
partitions = {
BOOT = {
size = "1M";
type = "EF02";
priority = 1;
};
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = ["umask=0077"];
};
2025-01-25 18:57:48 +00:00
};
root = {
size = "100%";
content = {
type = "btrfs";
extraArgs = ["-f"];
subvolumes = {
"/root" = {
mountpoint = "/";
};
"/persist" = {
mountOptions = ["subvol=persist"];
mountpoint = "/persist";
};
"/nix" = {
mountOptions = ["subvol=nix" "noatime"];
mountpoint = "/nix";
};
"/swap" = {
mountOptions = ["noatime"];
mountpoint = "/.swapvol";
};
};
};
2025-01-25 18:57:48 +00:00
};
};
};
};
};
};
}