18 lines
563 B
Nix
18 lines
563 B
Nix
{ config, lib, ... }: {
|
|
programs.zellij = { # Аналог tmux
|
|
enable = true;
|
|
# Перезапись некоторых цветов stylix темы
|
|
themes.stylix = {
|
|
themes = with config.lib.stylix.colors.withHashtag; {
|
|
default = {
|
|
ribbon_selected.background = lib.mkForce base0B;
|
|
table_title.base = lib.mkForce base0B;
|
|
frame_selected.base = lib.mkForce base0B;
|
|
};
|
|
};
|
|
};
|
|
# enableBashIntegration = true;
|
|
# enableZshIntegration = true;
|
|
# enableFishIntegration = true;
|
|
};
|
|
}
|