reNixos/kyra/disko/lvm_vg.nix
s0me1newithhand7s fbe9a78856 kyra(hardening): disko LVM subvolume prepare for Impermanence
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-05-03 16:05:49 +03:00

44 lines
1,003 B
Nix

_: {
disko = {
devices = {
lvm_vg = {
"pool" = {
type = "lvm_vg";
lvs = {
"root" = {
size = "100%FREE";
content = {
type = "btrfs";
extraArgs = [
"-f"
];
subvolumes = {
"/nix" = {
mountpoint = "/nix";
mountOptions = [
"compress=zstd"
"noatime"
"nodev"
"nosuid"
];
};
"/persist" = {
mountpoint = "/persist";
mountOptions = [
"compress=zstd"
"noatime"
"nodev"
"nosuid"
];
};
};
};
};
};
};
};
};
};
}