forked from nyanloutre/nixos-config
Plus de programmes
This commit is contained in:
parent
68b0a6ea06
commit
24c352d37f
1 changed files with 16 additions and 7 deletions
|
@ -62,18 +62,27 @@
|
|||
smartmontools
|
||||
htop
|
||||
telnet
|
||||
tldr
|
||||
fzf
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
programs.zsh.enable = true;
|
||||
programs.zsh.enableAutosuggestions = true;
|
||||
programs.zsh.enableCompletion = true;
|
||||
programs.zsh.syntaxHighlighting.enable = true;
|
||||
programs.zsh.ohMyZsh.enable = true;
|
||||
programs.zsh.ohMyZsh.plugins = [ "git" "colored-man-pages" "command-not-found" "extract" ];
|
||||
programs.zsh.ohMyZsh.theme = "bureau";
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableAutosuggestions = true;
|
||||
enableCompletion = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
interactiveShellInit = ''
|
||||
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"; };
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue