Compare commits

..

No commits in common. "58b2e5cce0a2c73224b70df1869f742096895dc8" and "3e44bcc52f3309d81507bba1e051c9383825d242" have entirely different histories.

3 changed files with 8 additions and 12 deletions

View File

@ -33,6 +33,7 @@
figlet figlet
tmux tmux
w3m w3m
#neovim
wget wget
xh xh
minio-client minio-client

View File

@ -27,7 +27,7 @@ in
description = "enable nextcloud support"; description = "enable nextcloud support";
}; };
XMPP = mkOption { XMPP = mkOption {
default = false; default = true;
type = types.bool; type = types.bool;
description = "enable XMPP support ()"; description = "enable XMPP support ()";
}; };

View File

@ -49,6 +49,7 @@
bmon bmon
figlet figlet
tmux tmux
neovim
xh xh
liboping liboping
mtr mtr
@ -59,22 +60,11 @@
# nice prompt together with grml # nice prompt together with grml
pure-prompt pure-prompt
]; ];
environment.shellAliases = {
ip = "ip --color";
watch = "watch -c";
grep = "grep --color=always --exclude-dir=.git";
vim = "nvim";
};
programs.mosh.enable = true; # open firewall programs.mosh.enable = true; # open firewall
programs.neovim = { programs.neovim = {
enable = true; enable = true;
defaultEditor = true; defaultEditor = true;
configure.customRC = ''
syntax on
set number relativenumber
'';
}; };
# zsh # zsh
@ -89,6 +79,11 @@
prompt pure; prompt pure;
''; '';
# promptInit = ""; # promptInit = "";
shellAliases = {
ip = "ip --color";
watch = "watch -c";
grep = "grep --color=always --exclude-dir=.git";
};
}; };
# tmux # tmux