40 lines
585 B
Nix
Raw Normal View History

2023-12-26 02:56:52 +01:00
{ pkgs, ... }:
2023-12-25 03:39:20 +01:00
{
home.username = "alice";
home.homeDirectory = "/home/alice";
home.packages = with pkgs; [
# Rust packages
topgrade
trunk
wasm-pack
cargo-watch
#pkgs.cargo-tarpaulin
cargo-generate
cargo-audit
cargo-update
diesel-cli
# gitoxide currently broke 09182023
gitoxide
tealdeer
helix
# nix specific packages
nil
nixfmt
# markdown
nodePackages.markdownlint-cli
# doom emacs dependencies
fd
ripgrep
clang
];
programs.zsh.enable = true;
2023-12-25 03:39:20 +01:00
2023-12-26 02:56:52 +01:00
home.stateVersion = "23.11";
}