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

24 lines
388 B
Nix

{ pkgs, ... }:
# home manager
{
imports = [ ./home/sshconfig.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";
}