24 lines
367 B
Nix
24 lines
367 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
home.stateVersion = "22.05";
|
||
|
home.sessionVariables = {
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
}
|