mirror of
https://github.com/danth/stylix
synced 2024-11-10 14:44:16 +00:00
Implemented Zellij Support (#108)
Co-authored-by: Daniel Thwaites <danthwaites30@btinternet.com>
This commit is contained in:
parent
0015e56326
commit
383d7306df
1 changed files with 26 additions and 0 deletions
26
modules/zellij/hm.nix
Normal file
26
modules/zellij/hm.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ pkgs, config, lib, ... }:
|
||||
|
||||
{
|
||||
options.stylix.targets.zellij.enable =
|
||||
config.lib.stylix.mkEnableTarget "zellij" config.programs.zellij.enable ;
|
||||
|
||||
config = lib.mkIf config.stylix.targets.zellij.enable {
|
||||
programs.zellij.settings = {
|
||||
theme = "stylix";
|
||||
themes.stylix = with config.lib.stylix.colors.withHashtag; {
|
||||
bg = base00;
|
||||
fg = base05;
|
||||
red = base08;
|
||||
green = base0B;
|
||||
blue = base0D;
|
||||
yellow = base0A;
|
||||
magenta = base0E;
|
||||
orange = base09;
|
||||
cyan = base0C;
|
||||
black = base03;
|
||||
white = base05;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in a new issue