reNixos/ada/disko/lvm_vg.nix
s0me1newithhand7s 1c919a120d fix(ada): disko "-f" flag removal
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-05-29 00:10:19 +03:00

48 lines
1.1 KiB
Nix

{
disko = {
devices = {
lvm_vg = {
pool = {
type = "lvm_vg";
lvs = {
root = {
size = "100%";
content = {
type = "btrfs";
subvolumes = {
"/root" = {
mountpoint = "/";
mountOptions = [
"compress=zstd"
"noatime"
"discard=async"
];
};
"/home" = {
mountpoint = "/home";
mountOptions = [
"compress=zstd"
"noatime"
"discard=async"
];
};
"/nix" = {
mountpoint = "/nix";
mountOptions = [
"compress=zstd"
"noatime"
"discard=async"
];
};
};
};
};
};
};
};
};
};
}