dotfiles/hosts/_common/home.nix
2023-02-24 23:11:16 -05:00

43 lines
693 B
Nix

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