2021-05-01 15:56:19 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.lazygit;
|
|
|
|
|
|
|
|
yamlFormat = pkgs.formats.yaml { };
|
|
|
|
|
|
|
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
|
|
|
|
|
|
|
in {
|
2021-12-25 18:25:22 +00:00
|
|
|
meta.maintainers = [ hm.maintainers.kalhauge ];
|
2021-05-01 15:56:19 +00:00
|
|
|
|
|
|
|
options.programs.lazygit = {
|
2023-07-01 23:45:18 +00:00
|
|
|
enable = mkEnableOption "lazygit, a simple terminal UI for git commands";
|
2021-05-01 15:56:19 +00:00
|
|
|
|
2023-07-01 23:45:18 +00:00
|
|
|
package = mkPackageOption pkgs "lazygit" { };
|
2022-12-16 16:55:29 +00:00
|
|
|
|
2021-05-01 15:56:19 +00:00
|
|
|
settings = mkOption {
|
|
|
|
type = yamlFormat.type;
|
|
|
|
default = { };
|
2021-10-09 09:14:08 +00:00
|
|
|
defaultText = literalExpression "{ }";
|
|
|
|
example = literalExpression ''
|
2021-05-01 15:56:19 +00:00
|
|
|
{
|
|
|
|
gui.theme = {
|
|
|
|
lightTheme = true;
|
|
|
|
activeBorderColor = [ "blue" "bold" ];
|
|
|
|
inactiveBorderColor = [ "black" ];
|
|
|
|
selectedLineBgColor = [ "default" ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
2023-07-01 23:45:18 +00:00
|
|
|
description = ''
|
2021-05-01 15:56:19 +00:00
|
|
|
Configuration written to
|
2023-06-30 23:30:13 +00:00
|
|
|
{file}`$XDG_CONFIG_HOME/lazygit/config.yml`
|
|
|
|
on Linux or on Darwin if [](#opt-xdg.enable) is set, otherwise
|
|
|
|
{file}`~/Library/Application Support/lazygit/config.yml`.
|
2023-04-14 11:45:24 +00:00
|
|
|
See
|
2023-06-30 23:30:13 +00:00
|
|
|
<https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md>
|
2021-05-01 15:56:19 +00:00
|
|
|
for supported values.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2022-12-16 16:55:29 +00:00
|
|
|
home.packages = [ cfg.package ];
|
2021-05-01 15:56:19 +00:00
|
|
|
|
|
|
|
home.file."Library/Application Support/lazygit/config.yml" =
|
2023-04-14 11:45:24 +00:00
|
|
|
mkIf (cfg.settings != { } && (isDarwin && !config.xdg.enable)) {
|
2021-05-01 15:56:19 +00:00
|
|
|
source = yamlFormat.generate "lazygit-config" cfg.settings;
|
|
|
|
};
|
|
|
|
|
|
|
|
xdg.configFile."lazygit/config.yml" =
|
2023-04-14 11:45:24 +00:00
|
|
|
mkIf (cfg.settings != { } && !(isDarwin && !config.xdg.enable)) {
|
2021-05-01 15:56:19 +00:00
|
|
|
source = yamlFormat.generate "lazygit-config" cfg.settings;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|