aboutsummaryrefslogtreecommitdiffstats
path: root/home/cargo/default.nix
blob: 1af2f7f3109cf1ea87fd3b241e51481f6b8524f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ inputs, pkgs, ... }:
{
  xdg.configFile."/home/petri/.cargo/config.toml".text = ''
    [registry]
    global-credential-providers = ["cargo:token"]

    [registries.relesoft]
    index = "sparse+https://git.relesoft.io/api/packages/relesoft/cargo/"

    [unstable]
    gc = true
  '';
}