dotfiles/hosts/_common/home.nix

33 lines
502 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
2023-01-02 18:34:16 +00:00
fd
2023-01-02 16:56:47 +00:00
ripgrep
2023-01-02 18:04:19 +00:00
tree-sitter
2023-01-02 23:12:45 +00:00
silver-searcher
2023-01-02 16:56:47 +00:00
wget
];
home.file = {
".tmux.conf" = {
source = ../../home/tmux.conf;
recursive = true;
};
2023-01-02 23:19:17 +00:00
"bin" = {
source = ../../home/bin;
recursive = true;
};
2023-01-02 16:56:47 +00:00
};
2023-01-02 23:19:17 +00:00
2023-01-02 16:56:47 +00:00
}