athens/nix/users/walkah/home.nix
2024-09-15 13:06:52 -04:00

22 lines
397 B
Nix

{ lib, pkgs, ... }: {
home = {
packages = with pkgs; [
chezmoi
direnv
eza
fzf
git
htop
starship
tmux
];
activation.chezmoi = lib.hm.dag.entryAfter [ "installPackages" ] ''
export PATH="${pkgs.git}/bin:$PATH"
$DRY_RUN_CMD ${pkgs.chezmoi}/bin/chezmoi init --apply walkah/dotfiles
'';
stateVersion = "24.05";
};
}