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