mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
38 lines
879 B
Nix
38 lines
879 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|