{ config, lib, pkgs, ... }: with lib; { programs.git-cliff = { enable = true; settings = { header = "Changelog"; footer = ""; trim = true; }; }; test.stubs.git-cliff = { }; nmt.script = '' assertFileContent \ home-files/.config/git-cliff/cliff.toml \ ${ builtins.toFile "expected.toml" '' footer = "" header = "Changelog" trim = true '' } ''; }