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