From 403292f8149eb6fb3313fd2942f52345c798dd53 Mon Sep 17 00:00:00 2001 From: uku Date: Mon, 20 May 2024 23:55:56 +0200 Subject: [PATCH] feat(programs): remove sscache from rust config --- programs/rust.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/programs/rust.nix b/programs/rust.nix index 75ed3d8..7d4f590 100644 --- a/programs/rust.nix +++ b/programs/rust.nix @@ -7,10 +7,7 @@ toml = pkgs.formats.toml {}; in { hm.home.file.".cargo/config.toml".source = toml.generate "config.toml" { - build = { - rustc-wrapper = "${lib.getExe' pkgs.sccache "sccache"}"; - target-dir = "${config.hm.home.homeDirectory}/.cargo/target"; - }; + build.target-dir = "${config.hm.home.homeDirectory}/.cargo/target"; target.x86_64-unknown-linux-gnu = { linker = "${lib.getExe pkgs.clang}";