2023-01-02 16:56:47 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
home.stateVersion = "22.05";
|
|
|
|
home.sessionVariables = {
|
|
|
|
PAGER = "less -R";
|
|
|
|
EDITOR = "nvim";
|
|
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
2023-01-03 05:32:32 +00:00
|
|
|
# Terminals
|
2023-01-02 16:56:47 +00:00
|
|
|
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
|
2023-01-03 05:32:32 +00:00
|
|
|
|
2023-01-02 16:56:47 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
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
|
|
|
}
|