1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 20:17:45 +00:00

Add cargo-expand and fetch with git CLI instead

This commit is contained in:
RGBCube 2024-01-06 16:36:22 +03:00
parent a8408ca647
commit cdbf7bf964
No known key found for this signature in database

View file

@ -1,10 +1,12 @@
{ inputs, ulib, pkgs, ... }: with ulib; merge { inputs, ulib, pkgs, ... }: with ulib; merge3
(desktopSystemConfiguration { (desktopSystemConfiguration {
nixpkgs.overlays = [ inputs.fenix.overlays.default ]; nixpkgs.overlays = [ inputs.fenix.overlays.default ];
}) })
(desktopSystemPackages (with pkgs; [ (desktopSystemPackages (with pkgs; [
cargo-expand
(fenix.complete.withComponents [ (fenix.complete.withComponents [
"cargo" "cargo"
"clippy" "clippy"
@ -13,3 +15,7 @@
"rustfmt" "rustfmt"
]) ])
])) ]))
(desktopHomeConfiguration {
programs.nushell.environmentVariables.CARGO_NET_GIT_FETCH_WITH_CLI = "true";
})