mirror of
https://github.com/RGBCube/ncc
synced 2026-01-21 20:51:10 +00:00
21 lines
412 B
Nix
21 lines
412 B
Nix
{ inputs, ulib, pkgs, ... }: with ulib; merge3
|
|
|
|
(desktopSystemConfiguration {
|
|
nixpkgs.overlays = [ inputs.fenix.overlays.default ];
|
|
})
|
|
|
|
(desktopSystemPackages (with pkgs; [
|
|
cargo-expand
|
|
|
|
(fenix.complete.withComponents [
|
|
"cargo"
|
|
"clippy"
|
|
"rust-src"
|
|
"rustc"
|
|
"rustfmt"
|
|
])
|
|
]))
|
|
|
|
(desktopHomeConfiguration {
|
|
programs.nushell.environmentVariables.CARGO_NET_GIT_FETCH_WITH_CLI = "true";
|
|
})
|