From 254d868c3472e6caa729ce930e6a46cb2bfc1db5 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Mon, 10 Aug 2026 16:27:54 +0200 Subject: [PATCH] System/Nixinator: Remove 500GB SSD from disks config --- system/nixinator/disks.nix | 94 +++++++++++++++++++------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/system/nixinator/disks.nix b/system/nixinator/disks.nix index 772d8d9..639f75d 100644 --- a/system/nixinator/disks.nix +++ b/system/nixinator/disks.nix @@ -141,53 +141,53 @@ }; }; - ssd = { - type = "disk"; - device = "/dev/disk/by-id/nvme-eui.00253857019ebd67"; - content = { - type = "gpt"; - partitions = { - luks = { - label = "LUKS_SSD"; - size = "100%"; - content = { - type = "luks"; - name = "crypted_ssd"; - - extraOpenArgs = [ - "--perf-no_read_workqueue" - "--perf-no_write_workqueue" - ]; - - settings = { - allowDiscards = true; - crypttabExtraOpts = ["fido2-device=auto" "token-timeout=10" "tries=5"]; - - # Disable for interactive password entry - # This is contained on the main disk, so by unlocking the main disk with the password, - # the second disk can unlock automatically - keyFile = "/persist/home/christoph/.secrets/luks.keyfile"; - fallbackToPassword = false; - }; - - content = { - type = "btrfs"; - extraArgs = ["-L" "SSD" "-f"]; - subvolumes = { - "data" = { - mountpoint = "/home/christoph/SSD"; - mountOptions = [ - "compress=zstd" - "noatime" - ]; - }; - }; - }; - }; - }; - }; - }; - }; + # ssd = { + # type = "disk"; + # device = "/dev/disk/by-id/nvme-eui.00253857019ebd67"; + # content = { + # type = "gpt"; + # partitions = { + # luks = { + # label = "LUKS_SSD"; + # size = "100%"; + # content = { + # type = "luks"; + # name = "crypted_ssd"; + # + # extraOpenArgs = [ + # "--perf-no_read_workqueue" + # "--perf-no_write_workqueue" + # ]; + # + # settings = { + # allowDiscards = true; + # crypttabExtraOpts = ["fido2-device=auto" "token-timeout=10" "tries=5"]; + # + # # Disable for interactive password entry + # # This is contained on the main disk, so by unlocking the main disk with the password, + # # the second disk can unlock automatically + # keyFile = "/persist/home/christoph/.secrets/luks.keyfile"; + # fallbackToPassword = false; + # }; + # + # content = { + # type = "btrfs"; + # extraArgs = ["-L" "SSD" "-f"]; + # subvolumes = { + # "data" = { + # mountpoint = "/home/christoph/SSD"; + # mountOptions = [ + # "compress=zstd" + # "noatime" + # ]; + # }; + # }; + # }; + # }; + # }; + # }; + # }; + # }; }; };