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 = {
type = "btrfs";
extraArgs = [ "-f -L NAS-RAID" ];
extraArgs = ["-f -L NAS-RAID"];
subvolumes = {
"@" = {
mountpoint = "/mnt/Pluto";
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];
mountOptions = ["compress=zstd" "noatime" "ssd" "discard=async"];
};
"@/Backups";
"@/Media";
"@/Games";
"@/IT";
"@/Rest";
"@/Backups" = {};
"@/Media" = {};
"@/Games" = {};
"@/IT" = {};
"@/Rest" = {};
"@snapshots" = {
mountpoint = "/mnt";
mountOptions = [ "compress=zstd" "noatime" "ssd" "discard=async" ];
mountOptions = ["compress=zstd" "noatime" "ssd" "discard=async"];
};
};
};