From 1caac9b637c75c0e1ddb49fe1aba97cc2d879d83 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Sun, 29 Nov 2020 18:54:38 -0500 Subject: feat(gs/home): Add rust development tools rustup and rust-analyzer for now, but this will likely also have shell aliases and the like Change-Id: I7838e537a72600410205e018a0c86be1493a9ffe Reviewed-on: https://cl.tvl.fyi/c/depot/+/2207 Reviewed-by: glittershark Tested-by: BuildkiteCI --- users/glittershark/system/home/modules/development/rust.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 users/glittershark/system/home/modules/development/rust.nix (limited to 'users/glittershark/system/home/modules/development/rust.nix') diff --git a/users/glittershark/system/home/modules/development/rust.nix b/users/glittershark/system/home/modules/development/rust.nix new file mode 100644 index 000000000000..17bda9c746dc --- /dev/null +++ b/users/glittershark/system/home/modules/development/rust.nix @@ -0,0 +1,8 @@ +{ config, lib, pkgs, ... }: + +{ + home.packages = with pkgs; [ + rustup + rust-analyzer + ]; +} -- cgit 1.4.1