blob: 203ac0ea4b39da15f32aa243d60984f48a13e38b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.lazygit;
settingsFormat = pkgs.formats.yaml { };
in
{
options.programs.lazygit = {
enable = lib.mkEnableOption "lazygit, a simple terminal UI for git commands";
package = lib.mkPackageOption pkgs "lazygit" { };
settings = lib.mkOption {
inherit (settingsFormat) type;
default = { };
description = ''
Lazygit configuration.
See <https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md> for documentation.
'';
};
};
config = lib.mkIf cfg.enable {
environment = {
systemPackages = [ cfg.package ];
etc = lib.mkIf (cfg.settings != { }) {
"xdg/lazygit/config.yml".source = settingsFormat.generate "lazygit-config.yml" cfg.settings;
};
};
};
meta = {
maintainers = with lib.maintainers; [ linsui ];
};
}
|