From 2deb9164d2538816dfc9e6e8dd8360ad8b31aa6f Mon Sep 17 00:00:00 2001 From: ama Date: Thu, 25 Jul 2024 14:56:25 +0800 Subject: [PATCH] enable rust cargo --- profiles/work/home.nix | 1 + user/lang/rust/rust.nix | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/profiles/work/home.nix b/profiles/work/home.nix index 3dd755c..241accc 100644 --- a/profiles/work/home.nix +++ b/profiles/work/home.nix @@ -20,6 +20,7 @@ ../../user/style/stylix.nix # Styling and themes for my apps ../../user/lang/cc/cc.nix # C and C++ tools ../../user/lang/godot/godot.nix # Game development + ../../user/lang/rust/rust.nix #../../user/pkgs/blockbench.nix # Blockbench ## marked as insecure ../../user/hardware/bluetooth.nix # Bluetooth ]; diff --git a/user/lang/rust/rust.nix b/user/lang/rust/rust.nix index 23bccb1..fccd7d6 100644 --- a/user/lang/rust/rust.nix +++ b/user/lang/rust/rust.nix @@ -2,7 +2,9 @@ { home.packages = with pkgs; [ - # Rust setup - rustup + # Rust setup + # rustup + rustc + cargo ]; }