feat(home-manager): add zellij module

This commit is contained in:
Yorick Barbanneau 2025-01-02 20:37:20 +01:00
parent 535e2391fe
commit 1a7923bd63
3 changed files with 23 additions and 0 deletions

View file

@ -14,6 +14,7 @@
starship.enable = true; starship.enable = true;
utils.enable = true; utils.enable = true;
vifm.enable = true; vifm.enable = true;
zellij.enable = true;
zsh.enable = true; zsh.enable = true;
}; };
video = { video = {

View file

@ -0,0 +1,21 @@
{ lib, config, ... }:
with lib;
let
cfg = config.modules.cli.zellij;
in
{
options.modules.cli.zellij = {
enable = mkEnableOption "enable Zellij";
};
config = mkIf cfg.enable {
programs.zellij = {
enable = true;
enableZshIntegration = false;
settings = {
theme = "catppuccin-macchiato";
simplified_ui = true;
pane_frames = false;
};
};
};
}

View file

@ -13,6 +13,7 @@
./cli/starship ./cli/starship
./cli/utils ./cli/utils
./cli/vifm ./cli/vifm
./cli/zellij
./cli/zsh ./cli/zsh
./desktop/sway ./desktop/sway
./gaming/lutris ./gaming/lutris