main
jolheiser 2025-06-05 10:01:59 -05:00
parent c61443686d
commit 34cc5a7945
No known key found for this signature in database
2 changed files with 12 additions and 0 deletions

View File

@ -16,6 +16,7 @@
./lsp.nix
./nushell.nix
./oh-my-posh.nix
./rust.nix
./senpai.nix
./ssh.nix
./xdg.nix

View File

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
rustc
cargo
rustfmt
clippy
rust-analyzer
gcc
];
}