dotfiles/hosts/_common/home.nix
2023-01-02 11:56:47 -05:00

25 lines
415 B
Nix

{ pkgs, ... }:
{
home.stateVersion = "22.05";
home.sessionVariables = {
XDG_CONFIG_HOME = "/Users/tyrel/.config";
PAGER = "less -R";
EDITOR = "nvim";
};
home.packages = with pkgs; [
bat
ctags
exa
fzf
ripgrep
wget
];
home.file = {
".tmux.conf" = {
source = ../../home/tmux.conf;
recursive = true;
};
};
}