nix/home-manager/common/software/cli/zellij.nix

24 lines
517 B
Nix
Raw Normal View History

2024-04-29 08:15:42 +02:00
{ config, ... }: {
2024-04-29 06:55:26 +02:00
programs.zellij = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
2024-04-29 08:14:23 +02:00
settings = {
theme = "stylix";
themes.stylix = with config.lib.stylix.colors.withHashtag; {
bg = base02;
fg = base06;
red = base08;
green = base0B;
blue = base0D;
yellow = base0A;
magenta = base0E;
orange = base09;
cyan = base0C;
black = base00;
white = base07;
};
};
2024-04-29 06:55:26 +02:00
};
}