feat(home-manager): add zellij module
This commit is contained in:
parent
535e2391fe
commit
1a7923bd63
3 changed files with 23 additions and 0 deletions
21
modules/home-manager/cli/zellij/default.nix
Normal file
21
modules/home-manager/cli/zellij/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -13,6 +13,7 @@
|
|||
./cli/starship
|
||||
./cli/utils
|
||||
./cli/vifm
|
||||
./cli/zellij
|
||||
./cli/zsh
|
||||
./desktop/sway
|
||||
./gaming/lutris
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue