From a03d1d88677a50125a5c492603ce3bb31e0e9151 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 5 Dec 2025 12:18:20 +0100 Subject: [PATCH] feat(nix): enable ccache and configure sandbox paths for x86_64-linux x1 - Enabled `programs.ccache` for improved build caching - Configured `nix.settings.extra-sandbox-paths` to include ccache cache directory - Maintains consistency with existing build optimization practices --- systems/x86_64-linux/x1/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/systems/x86_64-linux/x1/default.nix b/systems/x86_64-linux/x1/default.nix index 8c67e36..b4d1e4a 100644 --- a/systems/x86_64-linux/x1/default.nix +++ b/systems/x86_64-linux/x1/default.nix @@ -16,6 +16,9 @@ with lib.metacfg; 22000 ]; + programs.ccache.enable = true; + nix.settings.extra-sandbox-paths = [ config.programs.ccache.cacheDir ]; + services.tailscale.enable = true; services.cratedocs-mcp.enable = true;