536 current 1970-01-01 01:00:00 24.11.20250115.e24b4c0 6.6.71 *

This commit is contained in:
Max Känner 2025-01-23 01:11:56 +01:00
parent 195f941fad
commit 55585a31d4
2 changed files with 3 additions and 2 deletions

View File

@ -11,9 +11,10 @@ in {
config = lib.mkIf cfg.enable {
nix.settings = {
substituters = ["https://nix-community.cachix.org"];
substituters = ["https://nix-community.cachix.org/" "https://nixpkgs-python.cachix.org/"];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nixpkgs-python.cachix.org-1:hxjI7pFxTyuTHn2NkvWCrAUcNZLNS3ZAvfYNuYifcEU="
];
};
};

View File

@ -13,7 +13,7 @@ in {
config = lib.mkIf cfg.enable {
programs.nix-ld = {
enable = true;
libraries = with pkgs; [];
libraries = with pkgs; [libclang stdenv.cc.cc];
};
};
}