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