Plus de programmes

This commit is contained in:
nyanloutre 2018-08-31 17:14:34 +02:00
parent 68b0a6ea06
commit 24c352d37f
1 changed files with 16 additions and 7 deletions

View File

@ -62,18 +62,27 @@
smartmontools smartmontools
htop htop
telnet telnet
tldr
fzf
]; ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
users.defaultUserShell = pkgs.zsh; users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true; programs.zsh = {
programs.zsh.enableAutosuggestions = true; enable = true;
programs.zsh.enableCompletion = true; enableAutosuggestions = true;
programs.zsh.syntaxHighlighting.enable = true; enableCompletion = true;
programs.zsh.ohMyZsh.enable = true; syntaxHighlighting.enable = true;
programs.zsh.ohMyZsh.plugins = [ "git" "colored-man-pages" "command-not-found" "extract" ]; interactiveShellInit = ''
programs.zsh.ohMyZsh.theme = "bureau"; source "$(${pkgs.fzf}/bin/fzf-share)/key-bindings.zsh"
'';
ohMyZsh = {
enable = true;
plugins = [ "git" "colored-man-pages" "command-not-found" "extract" ];
theme = "bureau";
};
};
environment.variables = { EDITOR = "nvim"; }; environment.variables = { EDITOR = "nvim"; };