From dc42d6d36f339b22f727dd690c7a3829dcbe0953 Mon Sep 17 00:00:00 2001 From: twoneis Date: Wed, 8 Jan 2025 18:24:19 +0100 Subject: [PATCH] name without / --- devices/inkvine/disko.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/devices/inkvine/disko.nix b/devices/inkvine/disko.nix index e557f93..69ce629 100644 --- a/devices/inkvine/disko.nix +++ b/devices/inkvine/disko.nix @@ -29,19 +29,19 @@ type = "btrfs"; extraArgs = [ "-f" ]; subvolumes = { - "/root" = { + "root" = { mountpoint = "/"; mountOptions = [ "compress=zstd" "noatime" ]; }; - "/nix" = { + "nix" = { mountpoint = "/nix"; mountOptions = [ "compress=zstd" "noatime" ]; }; - "/persist" = { + "persist" = { mountpoint = "/persist"; mountOptions = [ "compress=zstd" "noatime" ]; }; - "/swap" = { + "swap" = { mountpoint = "/.swapvol"; swap.swapfile.size = "8G"; };