mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-19 14:53:00 +00:00
Can generate the config without installing application through home-manager. Helpful when a package is broken (or not provided) on a specific platform through nixpkgs and needs to be installed through other means but you still can benefit from the declarative configuration.
60 lines
1.7 KiB
Nix
60 lines
1.7 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.lazygit;
|
|
|
|
yamlFormat = pkgs.formats.yaml { };
|
|
|
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
|
|
|
in {
|
|
meta.maintainers = [ lib.hm.maintainers.kalhauge lib.maintainers.khaneliman ];
|
|
|
|
options.programs.lazygit = {
|
|
enable = mkEnableOption "lazygit, a simple terminal UI for git commands";
|
|
|
|
package = mkPackageOption pkgs "lazygit" { nullable = true; };
|
|
|
|
settings = mkOption {
|
|
type = yamlFormat.type;
|
|
default = { };
|
|
defaultText = literalExpression "{ }";
|
|
example = literalExpression ''
|
|
{
|
|
gui.theme = {
|
|
lightTheme = true;
|
|
activeBorderColor = [ "blue" "bold" ];
|
|
inactiveBorderColor = [ "black" ];
|
|
selectedLineBgColor = [ "default" ];
|
|
};
|
|
}
|
|
'';
|
|
description = ''
|
|
Configuration written to
|
|
{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`.
|
|
See
|
|
<https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md>
|
|
for supported values.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
|
|
|
home.file."Library/Application Support/lazygit/config.yml" =
|
|
mkIf (cfg.settings != { } && (isDarwin && !config.xdg.enable)) {
|
|
source = yamlFormat.generate "lazygit-config" cfg.settings;
|
|
};
|
|
|
|
xdg.configFile."lazygit/config.yml" =
|
|
mkIf (cfg.settings != { } && !(isDarwin && !config.xdg.enable)) {
|
|
source = yamlFormat.generate "lazygit-config" cfg.settings;
|
|
};
|
|
};
|
|
}
|