added go, zig, and ruby, as well as environment

This commit is contained in:
2025-04-18 22:05:19 -06:00
parent 685d0e3bba
commit 690893bff0
7 changed files with 138 additions and 24 deletions

View File

@@ -29,7 +29,12 @@ in
description = "Rust development shell with cargo and rust-analyzer";
};
};
config = lib.mkIf config.my.dev.rust.enable {
users.users.jawz = { inherit packages; };
};
config = lib.mkMerge [
(lib.mkIf config.my.dev.rust.enable {
users.users.jawz = { inherit packages; };
})
{
environment.variables.CARGO_HOME = "\${XDG_DATA_HOME}/cargo";
}
];
}