forked from nyanloutre/nixos-config
Plus de programmes
This commit is contained in:
parent
68b0a6ea06
commit
24c352d37f
@ -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"; };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user