1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-21 17:59:39 +01:00
home-manager/modules/programs/zellij.nix
2025-05-11 18:47:55 -05:00

169 lines
5 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
cfg = config.programs.zellij;
yamlFormat = pkgs.formats.yaml { };
mkShellIntegrationOption =
option:
option
// {
default = false;
example = true;
};
in
{
meta.maintainers = [
lib.maintainers.khaneliman
lib.hm.maintainers.mainrs
];
options.programs.zellij = {
enable = lib.mkEnableOption "Zellij";
package = lib.mkPackageOption pkgs "zellij" { };
settings = lib.mkOption {
type = yamlFormat.type;
default = { };
example = lib.literalExpression ''
{
theme = "custom";
themes.custom.fg = "#ffffff";
}
'';
description = ''
Configuration written to
{file}`$XDG_CONFIG_HOME/zellij/config.kdl`.
If `programs.zellij.package.version` is older than 0.32.0, then
the configuration is written to {file}`$XDG_CONFIG_HOME/zellij/config.yaml`.
See <https://zellij.dev/documentation> for the full
list of options.
'';
};
attachExistingSession = mkOption {
type = types.bool;
default = false;
description = ''
Whether to attach to the default session after being autostarted if a Zellij session already exists.
Variable is checked in `auto-start` script. Requires shell integration to be enabled to have effect.
'';
};
exitShellOnExit = mkOption {
type = types.bool;
default = false;
description = ''
Whether to exit the shell when Zellij exits after being autostarted.
Variable is checked in `auto-start` script. Requires shell integration to be enabled to have effect.
'';
};
themes = mkOption {
type = types.attrsOf (
types.oneOf [
yamlFormat.type
types.path
types.lines
]
);
default = { };
description = ''
Each them is written to {file}`$XDG_CONFIG_HOME/zellij/themes/NAME.kdl`.
See <https://zellij.dev/documentation/themes.html> for more information.
'';
};
enableBashIntegration = mkShellIntegrationOption (
lib.hm.shell.mkBashIntegrationOption { inherit config; }
);
enableFishIntegration = mkShellIntegrationOption (
lib.hm.shell.mkFishIntegrationOption { inherit config; }
);
enableZshIntegration = mkShellIntegrationOption (
lib.hm.shell.mkZshIntegrationOption { inherit config; }
);
};
config =
let
shellIntegrationEnabled = (
cfg.enableBashIntegration || cfg.enableZshIntegration || cfg.enableFishIntegration
);
in
mkIf cfg.enable {
home.packages = [ cfg.package ];
# Zellij switched from yaml to KDL in version 0.32.0:
# https://github.com/zellij-org/zellij/releases/tag/v0.32.0
xdg.configFile = lib.mkMerge [
{
"zellij/config.yaml" =
mkIf (cfg.settings != { } && (lib.versionOlder cfg.package.version "0.32.0"))
{
source = yamlFormat.generate "zellij.yaml" cfg.settings;
};
"zellij/config.kdl" =
mkIf (cfg.settings != { } && (lib.versionAtLeast cfg.package.version "0.32.0"))
{
text = lib.hm.generators.toKDL { } cfg.settings;
};
}
(lib.mapAttrs' (
name: value:
lib.nameValuePair "zellij/themes/${name}.kdl" {
source =
if builtins.isPath value || lib.isStorePath value then
value
else
pkgs.writeText "zellij-theme-${name}" (
if lib.isString value then value else lib.hm.generators.toKDL { } value
);
}
) cfg.themes)
];
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
eval "$(${lib.getExe cfg.package} setup --generate-auto-start bash)"
'';
programs.zsh.initContent = mkIf cfg.enableZshIntegration (
lib.mkOrder 200 ''
eval "$(${lib.getExe cfg.package} setup --generate-auto-start zsh)"
''
);
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
eval (${lib.getExe cfg.package} setup --generate-auto-start fish | string collect)
'';
home.sessionVariables = mkIf shellIntegrationEnabled {
ZELLIJ_AUTO_ATTACH = if cfg.attachExistingSession then "true" else "false";
ZELLIJ_AUTO_EXIT = if cfg.exitShellOnExit then "true" else "false";
};
warnings =
lib.optional (cfg.attachExistingSession && !shellIntegrationEnabled) ''
You have enabled `programs.zellij.attachExistingSession`, but none of the shell integrations are enabled.
This option will have no effect.
''
++ lib.optional (cfg.exitShellOnExit && !shellIntegrationEnabled) ''
You have enabled `programs.zellij.exitShellOnExit`, but none of the shell integrations are enabled.
This option will have no effect.
'';
};
}