dotfiles/hosts/_common/home.nix

25 lines
385 B
Nix
Raw Normal View History

2023-01-02 16:56:47 +00:00
{ pkgs, ... }:
{
home.stateVersion = "22.05";
home.sessionVariables = {
PAGER = "less -R";
EDITOR = "nvim";
};
home.packages = with pkgs; [
bat
ctags
exa
fzf
ripgrep
2023-01-02 18:04:19 +00:00
tree-sitter
2023-01-02 16:56:47 +00:00
wget
];
home.file = {
".tmux.conf" = {
source = ../../home/tmux.conf;
recursive = true;
};
};
}