me like nix
0

Configure Feed

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

Use external Noctalia Zellij theme

author
Sean Aye
date (Jun 15, 2026, 11:54 PM -0400) commit 8253f5c8 parent 887c1562 change-id xkkzpxks
+19 -18
+14
flake.lock
··· 798 798 "type": "github" 799 799 } 800 800 }, 801 + "noctalia-theme-zellij": { 802 + "flake": false, 803 + "locked": { 804 + "lastModified": 1781581969, 805 + "narHash": "sha256-z5cwZohawOoLzGLCygpqpk5m/hVK7sruTckhwm9zzmM=", 806 + "path": "/home/sean/dev/noctalia-theme-zellij", 807 + "type": "path" 808 + }, 809 + "original": { 810 + "path": "/home/sean/dev/noctalia-theme-zellij", 811 + "type": "path" 812 + } 813 + }, 801 814 "opencodex": { 802 815 "inputs": { 803 816 "nixpkgs": [ ··· 836 849 "nixos-raspberrypi": "nixos-raspberrypi", 837 850 "nixpkgs": "nixpkgs_8", 838 851 "noctalia": "noctalia", 852 + "noctalia-theme-zellij": "noctalia-theme-zellij", 839 853 "opencodex": "opencodex", 840 854 "trmnl-rs": "trmnl-rs", 841 855 "zen-browser": "zen-browser"
+4
flake.nix
··· 24 24 catppuccin.url = "github:catppuccin/nix"; 25 25 niri.url = "github:sodiboo/niri-flake"; 26 26 noctalia.url = "github:noctalia-dev/noctalia"; 27 + noctalia-theme-zellij = { 28 + url = "path:/home/sean/dev/noctalia-theme-zellij"; 29 + flake = false; 30 + }; 27 31 nixarr.url = "github:rasmus-kirk/nixarr"; 28 32 zen-browser = { 29 33 url = "github:0xc000022070/zen-browser-flake";
-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 - }
+1 -1
modules/desktop.nix
··· 400 400 output_path = "$XDG_CONFIG_HOME/helix/themes/noctalia.toml"; 401 401 }; 402 402 zellij = { 403 - input_path = "${./_config/noctalia/templates/zellij.kdl}"; 403 + input_path = "${inputs.noctalia-theme-zellij}/zellij.kdl"; 404 404 output_path = "$XDG_CONFIG_HOME/zellij/themes/noctalia.kdl"; 405 405 }; 406 406 };