Skip to content

Commit

Permalink
git: fix setting format on >=25.05 (#6480)
Browse files Browse the repository at this point in the history
Signed-off-by: Sumner Evans <me@sumnerevans.com>
Co-authored-by: Immae <immae@users.noreply.github.com>
  • Loading branch information
sumnerevans and immae authored Feb 17, 2025
1 parent 9d0d48f commit f4f6dd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/programs/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ in {
format = if (versionOlder config.home.stateVersion "25.05") then
(mkOptionDefault "openpgp")
else
null;
(mkOptionDefault null);
signer = let
defaultSigners = {
openpgp = getExe config.programs.gpg.package;
Expand Down

1 comment on commit f4f6dd2

@darkylein
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the quick fix :)

Please sign in to comment.