27 lines
413 B
Nix
Raw Normal View History

{ pkgs, ... }:
2024-04-08 17:45:15 -04:00
# home manager
{
2024-04-10 18:15:58 -04:00
imports = [
./home/sshconfig.nix
./home/git.nix
];
2024-04-10 17:16:42 -04:00
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";
}