From efb3ac119e93d3bdd7e56a5ad1fdaca04b07dffa 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 --- hosts/vm/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index 22430f1..7b77541 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -17,7 +17,12 @@ fileSystems."/" = { fsType = "tmpfs"; - options = [ "mode=0755" ]; + }; + + fileSystems."/nix" = { + fsType = "btrfs"; + device = "/dev/vda2"; + options = [ "nodev,noatime,compress-force=zstd:1,discard=async" ]; }; system.stateVersion = "25.05";