diff --git a/home/zellij/default.nix b/home/zellij/default.nix new file mode 100644 index 0000000..4883a27 --- /dev/null +++ b/home/zellij/default.nix @@ -0,0 +1,22 @@ +{ + default, + ... +}: { + programs.zellij = { + enable = true; + settings = { + theme = "custom"; + themes.custom.bg = "#585b70"; + themes.custom.fg = "#cdd6f4"; + themes.custom.red = "#f38ba8"; + themes.custom.green = "#a6e3a1"; + themes.custom.blue = "#89b4fa"; + themes.custom.yellow = "#f9e2af"; + themes.custom.magenta = "#f5c2e7"; + themes.custom.orange = "#fab387"; + themes.custom.cyan = "#89dceb"; + themes.custom.black = "#181825"; + themes.custom.white = "#cdd6f4"; + }; + }; +} diff --git a/hosts/tsuki/home.nix b/hosts/tsuki/home.nix index 9dfe8f8..5371958 100755 --- a/hosts/tsuki/home.nix +++ b/hosts/tsuki/home.nix @@ -10,6 +10,7 @@ imports = [ ../../home/dunst ../../home/lf ../../home/mpv + ../../home/zellij ../../home/waybar ../../home/wayland/hyprland ];