about summary refs log tree commit diff
path: root/users/glittershark/system/home/modules/development/rust.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/system/home/modules/development/rust.nix')
-rw-r--r--users/glittershark/system/home/modules/development/rust.nix8
1 files changed, 8 insertions, 0 deletions
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 0000000000..17bda9c746
--- /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
+  ];
+}