dotfiles/hosts/_common/home.nix
Tyrel Souza 5c17826418 fd
2023-01-02 13:34:16 -05:00

26 lines
394 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
wget
];
home.file = {
".tmux.conf" = {
source = ../../home/tmux.conf;
recursive = true;
};
};
}