Compare commits
No commits in common. "58b2e5cce0a2c73224b70df1869f742096895dc8" and "3e44bcc52f3309d81507bba1e051c9383825d242" have entirely different histories.
58b2e5cce0
...
3e44bcc52f
|
@ -33,6 +33,7 @@
|
|||
figlet
|
||||
tmux
|
||||
w3m
|
||||
#neovim
|
||||
wget
|
||||
xh
|
||||
minio-client
|
||||
|
|
|
@ -27,7 +27,7 @@ in
|
|||
description = "enable nextcloud support";
|
||||
};
|
||||
XMPP = mkOption {
|
||||
default = false;
|
||||
default = true;
|
||||
type = types.bool;
|
||||
description = "enable XMPP support ()";
|
||||
};
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
bmon
|
||||
figlet
|
||||
tmux
|
||||
neovim
|
||||
xh
|
||||
liboping
|
||||
mtr
|
||||
|
@ -59,22 +60,11 @@
|
|||
# nice prompt together with grml
|
||||
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.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
configure.customRC = ''
|
||||
syntax on
|
||||
set number relativenumber
|
||||
'';
|
||||
};
|
||||
|
||||
# zsh
|
||||
|
@ -89,6 +79,11 @@
|
|||
prompt pure;
|
||||
'';
|
||||
# promptInit = "";
|
||||
shellAliases = {
|
||||
ip = "ip --color";
|
||||
watch = "watch -c";
|
||||
grep = "grep --color=always --exclude-dir=.git";
|
||||
};
|
||||
};
|
||||
|
||||
# tmux
|
||||
|
|
Loading…
Reference in New Issue