14 lines
254 B
Nix
14 lines
254 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.file.".cargo/config.toml".text = ''
|
|
[net]
|
|
git-fetch-with-cli = true
|
|
|
|
[registries]
|
|
|
|
[registries.git_noahknegt_com_ev-charging]
|
|
index = "sparse+https://git.noahknegt.com/api/packages/ev-charging/cargo/"
|
|
'';
|
|
}
|