blob: 9d19a36106d8fcd879632910d49ac03ef8c19163 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
config,
lib,
...
}: let
cfg = config.features.cli.apps.lazygit;
in {
options.features.cli.apps.lazygit.enable = lib.mkEnableOption "lazygit";
config = lib.mkIf cfg.enable {
programs.lazygit.enable = true;
};
}
|