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"; };