dotfiles/hosts/_common/home.nix
Tyrel Souza 49a5240079
updates
2023-01-17 18:39:14 -05:00

40 lines
637 B
Nix

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