config/systems/x86_64-linux/earth/disk-config.nix

78 lines
1.8 KiB
Nix
Raw Normal View History

2025-05-23 19:48:46 -04:00
{
disko.devices = {
disk = {
2025-05-28 12:33:51 -04:00
main = {
2025-05-23 19:48:46 -04:00
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
ESP = {
size = "1G";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
2025-05-28 12:33:51 -04:00
mountOptions = ["umask=0077" "nofail"];
2025-05-23 19:48:46 -04:00
};
};
2025-06-18 12:07:36 -04:00
root = {
name = "root";
2025-05-23 19:48:46 -04:00
size = "100%";
content = {
2025-06-18 12:07:36 -04:00
type = "btrfs";
extraArgs = ["-f"];
subvolumes = {
"/rootfs" = {
mountpoint = "/";
};
"/home" = {
mountOptions = ["compress=zstd"];
mountpoint = "/home";
};
"/home/zoey" = {};
"/nix" = {
mountOptions = [
"compress=zstd"
];
mountpoint = "/nix";
};
};
2025-05-23 19:48:46 -04:00
};
};
};
};
};
backup = {
type = "disk";
device = "/dev/nvme1n1";
content = {
type = "gpt";
partitions = {
2025-05-28 12:33:51 -04:00
zbk = {
2025-05-23 19:48:46 -04:00
size = "100%";
content = {
2025-06-18 12:07:36 -04:00
type = "btrfs";
extraArgs = ["-f"];
subvolumes = {
"/mnt/zbk" = {
mountOptions = [
"compress=zstd"
"noatime"
];
mountpoint = "/mnt/zbk";
};
};
2025-05-23 19:48:46 -04:00
};
};
};
};
};
};
};
}