2022-02-02 17:40:40 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.zellij;
|
|
|
|
yamlFormat = pkgs.formats.yaml { };
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ hm.maintainers.mainrs ];
|
|
|
|
|
|
|
|
options.programs.zellij = {
|
|
|
|
enable = mkEnableOption "zellij";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.zellij;
|
|
|
|
defaultText = literalExpression "pkgs.zellij";
|
|
|
|
description = ''
|
|
|
|
The zellij package to install.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = yamlFormat.type;
|
|
|
|
default = { };
|
|
|
|
example = literalExpression ''
|
|
|
|
{
|
|
|
|
theme = "custom";
|
2022-11-21 23:06:46 +01:00
|
|
|
themes.custom.fg = "#ffffff";
|
2022-02-02 17:40:40 +01:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Configuration written to
|
|
|
|
<filename>$XDG_CONFIG_HOME/zellij/config.yaml</filename>.
|
|
|
|
</para><para>
|
|
|
|
See <link xlink:href="https://zellij.dev/documentation" /> for the full
|
|
|
|
list of options.
|
|
|
|
'';
|
|
|
|
};
|
2023-05-11 21:25:46 +02:00
|
|
|
|
|
|
|
enableBashIntegration = mkEnableOption "Enable Bash integration." // {
|
2023-05-12 13:54:26 +02:00
|
|
|
default = false;
|
2023-05-11 21:25:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableZshIntegration = mkEnableOption "Enable Zsh integration." // {
|
2023-05-12 13:54:26 +02:00
|
|
|
default = false;
|
2023-05-11 21:25:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableFishIntegration = mkEnableOption "Enable Fish integration." // {
|
2023-05-12 13:54:26 +02:00
|
|
|
default = false;
|
2023-05-11 21:25:46 +02:00
|
|
|
};
|
2022-02-02 17:40:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
2022-11-21 23:06:46 +01:00
|
|
|
# Zellij switched from yaml to KDL in version 0.32.0:
|
|
|
|
# https://github.com/zellij-org/zellij/releases/tag/v0.32.0
|
2023-04-22 11:31:44 +02:00
|
|
|
xdg.configFile."zellij/config.yaml" = mkIf
|
2022-11-21 23:06:46 +01:00
|
|
|
(cfg.settings != { } && (versionOlder cfg.package.version "0.32.0")) {
|
|
|
|
source = yamlFormat.generate "zellij.yaml" cfg.settings;
|
|
|
|
};
|
|
|
|
|
2023-04-22 11:31:44 +02:00
|
|
|
xdg.configFile."zellij/config.kdl" = mkIf
|
2023-03-10 17:15:39 +01:00
|
|
|
(cfg.settings != { } && (versionAtLeast cfg.package.version "0.32.0")) {
|
2022-11-21 23:06:46 +01:00
|
|
|
text = lib.hm.generators.toKDL { } cfg.settings;
|
|
|
|
};
|
2023-05-11 21:25:46 +02:00
|
|
|
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration (mkOrder 200 ''
|
|
|
|
eval "$(zellij setup --generate-auto-start bash)"
|
|
|
|
'');
|
|
|
|
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration (mkOrder 200 ''
|
|
|
|
eval "$(zellij setup --generate-auto-start zsh)"
|
|
|
|
'');
|
|
|
|
|
|
|
|
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration
|
|
|
|
(mkOrder 200 ''
|
|
|
|
eval (zellij setup --generate-auto-start fish | string collect)
|
|
|
|
'');
|
2022-02-02 17:40:40 +01:00
|
|
|
};
|
|
|
|
}
|