devtools: init
This commit is contained in:
parent
a5a2c6c87c
commit
3996f63789
2 changed files with 21 additions and 18 deletions
20
modules/devtools.nix
Normal file
20
modules/devtools.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue