2024-04-10 18:21:42 -04:00

27 lines
413 B
Nix

{ pkgs, ... }:
# home manager
{
imports = [
./home/sshconfig.nix
./home/git.nix
];
programs.zsh.enable = true;
home = {
username = "richie";
homeDirectory = "/home/richie";
packages = with pkgs; [
# Rust packages
topgrade
trunk
wasm-pack
cargo-watch
cargo-generate
cargo-audit
cargo-update
];
};
home.stateVersion = "23.11";
}