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
This commit is contained in:
Harald Hoyer 2025-12-05 12:18:20 +01:00
parent 570e7f1bf0
commit a03d1d8867

View file

@ -16,6 +16,9 @@ with lib.metacfg;
22000 22000
]; ];
programs.ccache.enable = true;
nix.settings.extra-sandbox-paths = [ config.programs.ccache.cacheDir ];
services.tailscale.enable = true; services.tailscale.enable = true;
services.cratedocs-mcp.enable = true; services.cratedocs-mcp.enable = true;