nixos-config/hosts/iso/zsh.nix

28 lines
520 B
Nix
Raw Normal View History

2023-05-01 19:59:25 +02:00
{ pkgs, ... }:
{
programs.command-not-found.enable = false;
users.defaultUserShell = pkgs.zsh;
2023-05-20 10:37:41 +02:00
programs.fzf = {
fuzzyCompletion = true;
keybindings = true;
};
2023-05-01 19:59:25 +02:00
programs.zsh = {
enable = true;
autosuggestions = {
enable = true;
highlightStyle = "fg=#00bbbb,bold";
};
2023-05-02 09:58:25 +02:00
ohMyZsh = {
enable = true;
theme = "risto";
};
2023-05-01 19:59:25 +02:00
shellInit =
''
source ${pkgs.zsh-fzf-tab}/share/fzf-tab/fzf-tab.plugin.zsh
zsh-newuser-install () {}
'';
};
}