From 8768d12ad67334d44344f575b1d20d751f745be6 Mon Sep 17 00:00:00 2001 From: willifan Date: Wed, 22 May 2024 19:15:46 +0200 Subject: [PATCH] Add rust tools --- users/willifan/graphical/dev/default.nix | 1 + users/willifan/graphical/dev/rust.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 users/willifan/graphical/dev/rust.nix diff --git a/users/willifan/graphical/dev/default.nix b/users/willifan/graphical/dev/default.nix index abfa574..8ca09ea 100644 --- a/users/willifan/graphical/dev/default.nix +++ b/users/willifan/graphical/dev/default.nix @@ -2,6 +2,7 @@ { imports = [ + ./rust.nix ./vscodium.nix ]; } diff --git a/users/willifan/graphical/dev/rust.nix b/users/willifan/graphical/dev/rust.nix new file mode 100644 index 0000000..53031b9 --- /dev/null +++ b/users/willifan/graphical/dev/rust.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + + rustup + probe-rs + cargo-binutils + + ]; +} \ No newline at end of file