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
{
lib,
pkgs,
config,
...
}:
let
inherit (lib) types;
cfg = config.programs.lazygit;
settingsFormat = pkgs.formats.yaml { };
in
{
options.programs.lazygit = {
enable = lib.mkEnableOption "lazygit";
defaultShell = lib.mkOption {
type = types.bool;
default = true;
};
settings = lib.mkOption {
default = { };
type = settingsFormat.type;
};
};
config = lib.mkIf cfg.enable {
packages = [ pkgs.lazygit ];
file.xdg_config."lazygit/config.yml".source =
settingsFormat.generate "lazygit-config.yaml" cfg.settings;
};
}