all repos — nixfiles @ d0deb1037ba46553a02a6d7d84b6abb5d4b6bbd8

System and user configuration, managed by nix and home-manager

Create initial rust development setup

Alan Pearce
commit

d0deb1037ba46553a02a6d7d84b6abb5d4b6bbd8

parent

fcee2cdf9c5e904eed5724028ad6531a105e6406

1 file changed, 11 insertions(+), 0 deletions(-)

changed files
A user/settings/development/rust.nix
@@ -0,0 +1,11 @@
+{ config, pkgs, ... }: + +{ + home.packages = with pkgs; [ + cargo + rustc + rustfmt + rust-analyzer + clippy + ]; +}