1
0
Fork 0
forked from foxora/nix
flake-foxora/homes/modules/shell/zellij/zellij.nix

14 lines
224 B
Nix
Raw Normal View History

2026-02-13 23:27:35 +10:00
{...}: {
2026-02-12 18:53:24 +00:00
# the theme file template for zellij is in wallust
programs.zellij = {
enable = true;
enableZshIntegration = false;
extraConfig = ''
2026-02-13 23:27:35 +10:00
theme "test"
show_startup_tips false
2026-02-12 18:53:24 +00:00
'';
};
}