Files
nixos-blueprint/hosts/legion/disko/disk-second.nix
2025-07-12 15:15:12 +03:00

36 lines
724 B
Nix

{
disk-second,
hostId,
}: {
type = "disk";
device = disk-second;
content = {
type = "gpt";
partitions = {
luks = {
size = "100%";
content = {
type = "luks";
name = "luks-${hostId}-second";
initrdUnlock = true;
settings.allowDiscards = true;
content = {
type = "btrfs";
extraArgs = ["-f"];
subvolumes = {
"@storage" = {
mountpoint = "/storage";
mountOptions = [
"autodefrag"
"compress=zstd"
"noatime"
];
};
};
};
};
};
};
};
}