ADD : rust

main
Alexandre LUCAZEAU 2023-01-16 10:51:17 +01:00
parent 3824d80662
commit ba0a263391
No known key found for this signature in database
GPG Key ID: 3C8ADB07A8217BD3
1 changed files with 10 additions and 0 deletions

10
modules/rust.nix Normal file
View File

@ -0,0 +1,10 @@
{ config, pkgs, ...}:
with import <nixpkgs> {};
{
home.packages = [
pkgs.gcc
pkgs.rustc
pkgs.cargo
pkgs.cargo-edit
];
}