1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +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 {
nixpkgs.overlays = [ inputs.fenix.overlays.default ];
})
(desktopSystemPackages (with pkgs; [
cargo-expand
(fenix.complete.withComponents [
"cargo"
"clippy"
@ -13,3 +15,7 @@
"rustfmt"
])
]))
(desktopHomeConfiguration {
programs.nushell.environmentVariables.CARGO_NET_GIT_FETCH_WITH_CLI = "true";
})