dotfiles/hosts/_common/programs.nix

37 lines
729 B
Nix
Raw Normal View History

2023-01-02 16:56:47 +00:00
{ pkgs, ... }:
{
programs.home-manager.enable = true;
programs.tmux = {
enable = true;
};
2023-01-02 17:07:42 +00:00
programs.zsh.prezto = {
enable = true;
};
2023-01-02 16:56:47 +00:00
programs.git = {
enable = true;
includes = [
{ path = "~/code/tyrel.dev/dotfiles/home/gitconfig"; }
];
aliases = {
ap = "add -p";
};
extraConfig = {
pull.ff = "only";
};
};
programs.neovim = {
enable = true;
2023-01-02 18:04:19 +00:00
plugins = with pkgs.vimPlugins; [
# Inject tree-sitters, since they're annoying to maintain with sideloading
(nvim-treesitter.withPlugins (plugins: pkgs.tree-sitter.allGrammars))
];
2023-01-02 16:56:47 +00:00
};
programs.htop = {
enable = true;
};
}