Compare commits

...

2 Commits

Author SHA1 Message Date
genofire 58b2e5cce0 home: default disable dino 2022-07-23 11:54:07 +02:00
genofire fd01cf370c nixos/home: improve vim 2022-07-23 11:53:42 +02:00
3 changed files with 12 additions and 8 deletions

View File

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

View File

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

View File

@ -49,7 +49,6 @@
bmon
figlet
tmux
neovim
xh
liboping
mtr
@ -60,11 +59,22 @@
# 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
@ -79,11 +89,6 @@
prompt pure;
'';
# promptInit = "";
shellAliases = {
ip = "ip --color";
watch = "watch -c";
grep = "grep --color=always --exclude-dir=.git";
};
};
# tmux