fix disko_luks syntax

This commit is contained in:
2026-04-26 18:21:02 +02:00
parent 49a63fd6aa
commit 4ca3e9abf4

View File

@@ -20,20 +20,20 @@
}; };
content = { content = {
type = "btrfs"; type = "btrfs";
extraArgs = [ "-f -L NAS-RAID" ]; extraArgs = ["-f -L NAS-RAID"];
subvolumes = { subvolumes = {
"@" = { "@" = {
mountpoint = "/mnt/Pluto"; mountpoint = "/mnt/Pluto";
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ]; mountOptions = ["compress=zstd" "noatime" "ssd" "discard=async"];
}; };
"@/Backups"; "@/Backups" = {};
"@/Media"; "@/Media" = {};
"@/Games"; "@/Games" = {};
"@/IT"; "@/IT" = {};
"@/Rest"; "@/Rest" = {};
"@snapshots" = { "@snapshots" = {
mountpoint = "/mnt"; mountpoint = "/mnt";
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ]; mountOptions = ["compress=zstd" "noatime" "ssd" "discard=async"];
}; };
}; };
}; };