From 4ca3e9abf49c71066280ba91765a47dfb2ee10e9 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Sun, 26 Apr 2026 18:21:02 +0200 Subject: [PATCH] fix disko_luks syntax --- disko/nas_luks.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/disko/nas_luks.nix b/disko/nas_luks.nix index 82bc5be..e87539a 100644 --- a/disko/nas_luks.nix +++ b/disko/nas_luks.nix @@ -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"]; }; }; };