From 59e9d11895dde47429f5eb903ba434e4c2a8afb5 Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Wed, 17 Sep 2025 20:23:22 +0200 Subject: [PATCH] Add mount for /nix/store --- hosts/vm/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index 22430f1..dc692a6 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -20,5 +20,11 @@ options = [ "mode=0755" ]; }; + fileSystems."/nix/store" = { + fsType = "btrfs"; + device = "/dev/vda2"; + options = [ "nodev,noatime,compress-force=zstd:1,discard=async" ]; + }; + system.stateVersion = "25.05"; }