nix-config/modules/basic-tools.nix

92 lines
1.6 KiB
Nix
Raw Normal View History

2022-05-25 19:27:42 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
bat
lsd
2022-05-25 19:27:42 +02:00
fd
file
fzf
2022-06-17 13:12:25 +02:00
git
2022-05-25 19:27:42 +02:00
gnupg
htop
irssi
killall
neovim
ripgrep
tealdeer
traceroute
tree
liquidprompt
(aspellWithDicts (ps: with ps; [ en en-science en-computers ru de ]))
exfatprogs
nmap
bind
nnn
man-pages
];
nix = {
extraOptions = ''
experimental-features = nix-command flakes
'';
};
programs.tmux = {
enable = true;
keyMode = "vi";
escapeTime = 0;
historyLimit = 50000;
aggressiveResize = true;
terminal = "tmux-256color";
};
# set appropriate environ variables
environment.variables = {
EDITOR = "nvim";
PAGER = "less -F";
};
environment.shellAliases = {
ls = "lsd";
l = "lsd -l";
la = "lsd -la";
ll = "lsd -lah";
lt = "lsd --tree";
2022-05-25 19:27:42 +02:00
vim = "nvim";
vi = "nvim";
vf = "$EDITOR $(fzf)";
vff = "$EDITOR $(ls|fzf)";
2022-06-11 23:28:31 +02:00
ssh = "TERM=xterm-256color ssh";
mutt = "neomutt";
2022-05-25 19:27:42 +02:00
};
users.defaultUserShell = pkgs.zsh;
programs.zsh = {
enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
interactiveShellInit = ''
bindkey -e
'';
promptInit = ''
2022-06-11 23:28:31 +02:00
source /run/current-system/sw/share/zsh/plugins/liquidprompt/liquidprompt
if [[ -n "$IN_NIX_SHELL" ]]; then
prompt_tag "(nix-shell)"
fi
2022-05-25 19:27:42 +02:00
'';
};
environment.etc.liquidpromptrc = {
text = ''
LP_ENABLE_SSH_COLORS=1
LP_ENABLE_TITLE=1
LP_ENABLE_SCREEN_TITLE=1
'';
};
2022-06-17 13:12:25 +02:00
2022-05-25 19:27:42 +02:00
programs.iftop.enable = true;
programs.mosh.enable = true;
}