dotfiles/hosts/_common/home.nix

26 lines
394 B
Nix
Raw Normal View History

2023-01-02 16:56:47 +00:00
{ pkgs, ... }:
{
home.stateVersion = "22.05";
home.sessionVariables = {
PAGER = "less -R";
EDITOR = "nvim";
};
home.packages = with pkgs; [
bat
ctags
exa
fzf
2023-01-02 18:34:16 +00:00
fd
2023-01-02 16:56:47 +00:00
ripgrep
2023-01-02 18:04:19 +00:00
tree-sitter
2023-01-02 16:56:47 +00:00
wget
];
home.file = {
".tmux.conf" = {
source = ../../home/tmux.conf;
recursive = true;
};
};
}