feat(gs/home): Add rust development tools
rustup and rust-analyzer for now, but this will likely also have shell aliases and the like Change-Id: I7838e537a72600410205e018a0c86be1493a9ffe Reviewed-on: https://cl.tvl.fyi/c/depot/+/2207 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
This commit is contained in:
parent
a8a9e88d68
commit
1caac9b637
2 changed files with 9 additions and 0 deletions
|
@ -33,6 +33,7 @@ with lib;
|
||||||
./lib/zshFunctions.nix
|
./lib/zshFunctions.nix
|
||||||
./development/kube.nix
|
./development/kube.nix
|
||||||
./development/agda.nix
|
./development/agda.nix
|
||||||
|
./development/rust.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
rustup
|
||||||
|
rust-analyzer
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue