update nuos partition table

This commit is contained in:
Noa Aarts 2025-11-12 08:28:35 +01:00
parent 1fd88ab565
commit 7e437cf293
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -15,7 +15,7 @@
};
esp = {
name = "ESP";
size = "500M";
size = "1G";
type = "EF00";
content = {
type = "filesystem";
@ -26,12 +26,35 @@
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
mountOptions = [
"defaults"
];
type = "btrfs";
subvolumes = {
"/rootfs" = {
mountpoint = "/";
};
"/home" = {
mountOptions = [ "compress=zstd" ];
mountpoint = "/home";
};
"/nix" = {
mountOptions = [
"compress=zstd"
"noatime"
];
mountpoint = "/nix";
};
"/immich" = {
mountOptions = [
"compress=zstd"
"noatime"
];
mountpoint = "/var/lib/immich";
};
};
mountpoint = "/partition-root";
};
};
};