21 lines
372 B
Nix
21 lines
372 B
Nix
|
{ pkgs, inputs, ... }: {
|
||
|
|
||
|
nixpkgs.overlays = [
|
||
|
inputs.fenix.overlay
|
||
|
inputs.emacs-overlay.overlay
|
||
|
];
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# rust
|
||
|
(inputs.fenix.packages."x86_64-linux".stable.withComponents [
|
||
|
"cargo"
|
||
|
"clippy"
|
||
|
"rust-src"
|
||
|
"rustc"
|
||
|
"rustfmt"
|
||
|
])
|
||
|
rust-analyzer-nightly
|
||
|
# nix
|
||
|
rnix-lsp
|
||
|
];
|
||
|
}
|