nixos-config/modules/cli/default.nix

141 lines
3 KiB
Nix
Raw Normal View History

2021-08-03 16:11:50 +00:00
{ config, pkgs, lib, ... }:
2020-09-18 13:54:09 +00:00
{
2021-10-11 17:08:18 +00:00
imports = [ ./powerline.nix ];
sconfig.powerline.enable = lib.mkDefault true;
2020-09-24 05:45:48 +00:00
environment.systemPackages = with pkgs; [
2022-07-29 06:08:45 +00:00
awscli2
2022-05-16 04:21:03 +00:00
bat
2021-08-23 04:57:12 +00:00
darkhttpd
2021-07-17 23:34:52 +00:00
dnsutils
2021-10-21 20:58:22 +00:00
dstat
2021-07-17 23:34:26 +00:00
du-dust
2020-09-24 05:45:48 +00:00
entr
2021-07-17 23:34:52 +00:00
file
2020-09-24 05:45:48 +00:00
gcc
2021-10-21 20:58:22 +00:00
iftop
2021-08-23 04:57:55 +00:00
inetutils
2021-10-21 20:58:22 +00:00
iotop
2020-10-24 01:50:14 +00:00
jq
2021-07-17 23:34:52 +00:00
lm_sensors
ncdu
2021-04-05 23:08:19 +00:00
nix-index
2021-11-12 19:56:01 +00:00
nix-prefetch-github
2021-05-26 17:03:14 +00:00
nix-top
2021-07-17 23:34:52 +00:00
nixpkgs-fmt
openssl
2022-02-24 15:30:14 +00:00
parted
2022-10-05 15:51:56 +00:00
pciutils
2021-07-17 23:34:52 +00:00
psmisc
pv
pwgen
python3
rsync
sqlite
tcpdump
tree
unzip
usbutils
wget
whois
2022-11-04 16:24:09 +00:00
yq
2021-07-17 23:34:52 +00:00
zip
2020-09-18 13:54:09 +00:00
(writeShellScriptBin "dirt" "while sleep 1; do grep '^Dirty:' /proc/meminfo ; done")
2022-02-24 15:26:11 +00:00
(writeShellScriptBin "nr" "exec nix repl \"$(nix eval nixpkgs#path)\"")
2021-08-16 05:01:42 +00:00
(writeShellScriptBin "pip-install" "exec python -m ensurepip --user")
2021-04-30 02:21:47 +00:00
2022-06-17 15:20:15 +00:00
(writeShellScriptBin "nix-roots" ''
nix-store --gc --print-roots | grep -v \
-e '^/proc/' \
-e '/.cache/nix/flake-registry.json '
'')
2020-09-24 05:45:48 +00:00
(writeScriptBin "zfsram" ''
#!${pkgs.python3}/bin/python
for ln in open('/proc/spl/kstat/zfs/arcstats').readlines():
if ln.startswith('size '):
print(str(int(ln.split(' ')[-1])/(1024*1024*1024))[:5],'GB')
'')
2020-10-01 15:40:28 +00:00
2021-06-28 17:20:20 +00:00
];
2020-09-18 13:54:09 +00:00
2022-01-22 18:35:35 +00:00
environment.variables.HTOPRC = "/dev/null";
2021-11-09 16:34:10 +00:00
programs.htop = {
enable = true;
settings = {
hide_userland_threads = 1;
highlight_base_name = 1;
show_program_path = 0;
2021-11-12 16:04:17 +00:00
tree_sort_direction = -1;
2021-11-09 16:34:10 +00:00
tree_view = 1;
};
};
2021-11-09 16:17:19 +00:00
programs.git = {
enable = true;
config = {
2022-02-10 06:46:28 +00:00
alias.glog = "log --all --decorate --oneline --graph";
2022-05-29 06:54:04 +00:00
alias.logl = "log --oneline -n10";
2021-11-09 16:17:19 +00:00
pull.ff = "only";
init.defaultBranch = "main";
};
};
2020-12-20 05:51:18 +00:00
programs.tmux = {
enable = true;
terminal = "screen-256color";
2022-03-01 18:30:47 +00:00
extraConfig = ''
2022-08-04 14:03:51 +00:00
bind-key j command-prompt -p "Join pane:" "join-pane -s '%%'"
2022-03-01 18:30:47 +00:00
'';
2020-12-20 05:51:18 +00:00
};
2020-09-24 05:45:48 +00:00
programs.bash.interactiveShellInit = ''
stty -ixon
alias p=python3
2021-11-10 01:53:49 +00:00
alias hd='hexdump -C'
alias nix-env="echo nix-env is disabled #"
2022-01-06 20:23:55 +00:00
alias nix-what-depends-on='nix-store --query --referrers'
2022-01-20 02:25:05 +00:00
alias day='date "+%Y-%m-%d"'
2022-05-27 21:46:51 +00:00
alias grep='grep --color=auto'
2022-08-10 03:17:54 +00:00
alias tmp='cd "$(mktemp -d)"'
2022-03-29 18:22:10 +00:00
'' +
# compatibility for programs that need $NIX_PATH set:
lib.concatMapStrings
(x: ''
alias ${x}='NIX_PATH="nixpkgs=$(nix eval nixpkgs#path)" ${x}'
'')
[
"nix-build"
"nix-index"
2022-04-24 16:08:06 +00:00
"nix-prefetch-github"
2022-03-29 18:22:10 +00:00
"nix-shell"
];
2021-06-04 14:45:50 +00:00
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
configure = {
2021-08-25 19:23:54 +00:00
packages.sconfig.start = with pkgs.vimPlugins; [
vim-gitgutter
vim-nix
];
2021-06-04 14:45:50 +00:00
customRC = ''
2021-08-25 19:23:54 +00:00
set encoding=utf-8
scriptencoding utf-8
set list nowrap scrolloff=9 updatetime=300 number
highlight GitGutterAdd ctermfg=10
highlight GitGutterChange ctermfg=11
highlight GitGutterDelete ctermfg=9
let g:gitgutter_sign_removed = ''
let g:gitgutter_sign_removed_first_line = ''
let g:gitgutter_sign_modified_removed = '~~'
2021-06-04 14:45:50 +00:00
'';
};
};
2020-09-18 13:54:09 +00:00
}