Compare commits
2 Commits
3e44bcc52f
...
58b2e5cce0
Author | SHA1 | Date |
---|---|---|
genofire | 58b2e5cce0 | |
genofire | fd01cf370c |
|
@ -33,7 +33,6 @@
|
||||||
figlet
|
figlet
|
||||||
tmux
|
tmux
|
||||||
w3m
|
w3m
|
||||||
#neovim
|
|
||||||
wget
|
wget
|
||||||
xh
|
xh
|
||||||
minio-client
|
minio-client
|
||||||
|
|
|
@ -27,7 +27,7 @@ in
|
||||||
description = "enable nextcloud support";
|
description = "enable nextcloud support";
|
||||||
};
|
};
|
||||||
XMPP = mkOption {
|
XMPP = mkOption {
|
||||||
default = true;
|
default = false;
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
description = "enable XMPP support ()";
|
description = "enable XMPP support ()";
|
||||||
};
|
};
|
||||||
|
|
|
@ -49,7 +49,6 @@
|
||||||
bmon
|
bmon
|
||||||
figlet
|
figlet
|
||||||
tmux
|
tmux
|
||||||
neovim
|
|
||||||
xh
|
xh
|
||||||
liboping
|
liboping
|
||||||
mtr
|
mtr
|
||||||
|
@ -60,11 +59,22 @@
|
||||||
# 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
|
||||||
|
@ -79,11 +89,6 @@
|
||||||
prompt pure;
|
prompt pure;
|
||||||
'';
|
'';
|
||||||
# promptInit = "";
|
# promptInit = "";
|
||||||
shellAliases = {
|
|
||||||
ip = "ip --color";
|
|
||||||
watch = "watch -c";
|
|
||||||
grep = "grep --color=always --exclude-dir=.git";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# tmux
|
# tmux
|
||||||
|
|
Loading…
Reference in New Issue