mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-22 10:19:39 +01:00
120 lines
3.9 KiB
Nix
120 lines
3.9 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.
|
|
'';
|
|
};
|
|
|
|
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."zellij/config.yaml" = mkIf
|
|
(cfg.settings != { } && (lib.versionOlder cfg.package.version "0.32.0")) {
|
|
source = yamlFormat.generate "zellij.yaml" cfg.settings;
|
|
};
|
|
|
|
xdg.configFile."zellij/config.kdl" = mkIf (cfg.settings != { }
|
|
&& (lib.versionAtLeast cfg.package.version "0.32.0")) {
|
|
text = lib.hm.generators.toKDL { } cfg.settings;
|
|
};
|
|
|
|
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.
|
|
'';
|
|
};
|
|
}
|