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.
45 lines
1 KiB
Nix
45 lines
1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.git-cliff;
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
in {
|
|
meta.maintainers = [ hm.maintainers.NateCox ];
|
|
|
|
options.programs.git-cliff = {
|
|
enable = mkEnableOption "git-cliff changelog generator";
|
|
|
|
package = mkPackageOption pkgs "git-cliff" { nullable = true; };
|
|
|
|
settings = mkOption {
|
|
type = tomlFormat.type;
|
|
default = { };
|
|
example = literalExpression ''
|
|
{
|
|
header = "Changelog";
|
|
trim = true;
|
|
}
|
|
'';
|
|
description = ''
|
|
Configuration written to
|
|
{file}`$XDG_CONFIG_HOME/git-cliff/cliff.toml`. See
|
|
<https://git-cliff.org/docs/configuration>
|
|
for the documentation.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
|
|
|
xdg.configFile = {
|
|
"git-cliff/cliff.toml" = mkIf (cfg.settings != { }) {
|
|
source = tomlFormat.generate "git-cliff-config" cfg.settings;
|
|
};
|
|
};
|
|
};
|
|
}
|