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