This commit is contained in:
Miguel Palhas
2024-10-06 11:37:02 +01:00
parent 76c886362a
commit adda4f9e06
4 changed files with 30 additions and 13 deletions
+7 -2
View File
@@ -1,4 +1,9 @@
{ pkgs, ... }: {
home.packages = with pkgs; [ rustup ];
{ pkgs, ... }:
{
home.packages = with pkgs; [
rustup
bacon
libgcc
];
home.sessionPath = [ "\${CARGO_HOME:-~/.cargo}/bin" ];
}