1
Fork 0

feat: rust

This commit is contained in:
Matei Adriel 2020-05-10 20:50:37 +03:00
parent 1a0058d027
commit eb36734615
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,4 @@
{ ... }: {
imports = [ ./nix.nix ./purescript.nix ./javascript.nix ./haskell ];
imports =
[ ./nix.nix ./purescript.nix ./javascript.nix ./rust.nix ./haskell ];
}

3
modules/dev/rust.nix Normal file
View file

@ -0,0 +1,3 @@
{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs; [ rustup ];
}