me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

Add Noctalia Zellij theme template

author
Sean Aye
date (Jun 15, 2026, 11:48 PM -0400) commit 887c1562 parent 26771114 change-id okpzkkml
+24
+17
modules/_config/noctalia/templates/zellij.kdl
··· 1 + themes { 2 + noctalia { 3 + fg "{{colors.terminal_foreground.default.hex}}" 4 + bg "{{colors.terminal_background.default.hex}}" 5 + 6 + black "{{colors.terminal_normal_black.default.hex}}" 7 + red "{{colors.terminal_normal_red.default.hex}}" 8 + green "{{colors.terminal_normal_green.default.hex}}" 9 + yellow "{{colors.terminal_normal_yellow.default.hex}}" 10 + blue "{{colors.terminal_normal_blue.default.hex}}" 11 + magenta "{{colors.terminal_normal_magenta.default.hex}}" 12 + cyan "{{colors.terminal_normal_cyan.default.hex}}" 13 + white "{{colors.terminal_normal_white.default.hex}}" 14 + 15 + orange "{{colors.tertiary.default.hex}}" 16 + } 17 + }
+5
modules/desktop.nix
··· 374 374 flavor = "frappe"; 375 375 alacritty.enable = false; 376 376 helix.enable = false; 377 + zellij.enable = false; 377 378 }; 378 379 379 380 programs.noctalia = { ··· 397 398 helix = { 398 399 input_path = "${inputs.noctalia}/assets/templates/helix/helix.toml"; 399 400 output_path = "$XDG_CONFIG_HOME/helix/themes/noctalia.toml"; 401 + }; 402 + zellij = { 403 + input_path = "${./_config/noctalia/templates/zellij.kdl}"; 404 + output_path = "$XDG_CONFIG_HOME/zellij/themes/noctalia.kdl"; 400 405 }; 401 406 }; 402 407 };
+2
modules/shell.nix
··· 56 56 }; 57 57 pane_frames = false; 58 58 show_startup_tips = false; 59 + theme = "noctalia"; 60 + theme_dir = "~/.config/zellij/themes"; 59 61 ui = { 60 62 pane_frames.hide_session_name = true; 61 63 };