dotfiles/hosts/_common/home.nix
2023-01-02 18:19:17 -05:00

33 lines
502 B
Nix

{ pkgs, ... }:
{
home.stateVersion = "22.05";
home.sessionVariables = {
PAGER = "less -R";
EDITOR = "nvim";
};
home.packages = with pkgs; [
bat
ctags
exa
fzf
fd
ripgrep
tree-sitter
silver-searcher
wget
];
home.file = {
".tmux.conf" = {
source = ../../home/tmux.conf;
recursive = true;
};
"bin" = {
source = ../../home/bin;
recursive = true;
};
};
}