diff options
| author | Grigory Shipunov | 2022-10-03 13:16:02 +0200 |
|---|---|---|
| committer | Grigory Shipunov | 2022-10-03 13:19:30 +0200 |
| commit | 3996f63789147cabec2b8deddab76df93ec3d9a7 (patch) | |
| tree | 2d676f943c9aee1cb7bfb463e2ad001ab30b35b7 /modules/devtools.nix | |
| parent | a5a2c6c87cf799d1c90da2a15f1c61aa940d873a (diff) | |
devtools: init
Diffstat (limited to 'modules/devtools.nix')
| -rw-r--r-- | modules/devtools.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/devtools.nix b/modules/devtools.nix new file mode 100644 index 0000000..a21df41 --- /dev/null +++ b/modules/devtools.nix @@ -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 + ]; +} |
