This commit is contained in:
DarkGui
2025-11-17 22:48:59 -03:00
parent 351443f66e
commit 149286ca06
10 changed files with 54 additions and 28 deletions
+15 -1
View File
@@ -24,5 +24,19 @@
nix.package = pkgs.lixPackageSets.latest.lix;
#nix.package = inputs.nixpkgs-master.legacyPackages.${pkgs.system}.lix;
}
## compilaçao
nix = {
settings = {
cores = 0;
max-jobs = "auto";
auto-optimise-store = true;
};
};
programs = {
ccache.enable = true;
ccache.cacheDir = "/var/cache/ccache";
};
nix.settings.extra-sandbox-paths = [ "/var/cache/ccache" ];
}