16 lines
196 B
Nix

{pkgs, ...}: {
imports = [
../../modules/git.nix
];
my.zsh.enable = true;
home.packages = with pkgs; [
lazygit
nvim-custom
ripgrep
];
home.stateVersion = "21.05";
}