1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-06 16:57:03 +00:00

git: fix setting format on >=25.05 (#6480)

Signed-off-by: Sumner Evans <me@sumnerevans.com>
Co-authored-by: Immae <immae@users.noreply.github.com>
This commit is contained in:
Sumner Evans 2025-02-17 11:02:24 -07:00 committed by GitHub
parent 9d0d48f4c3
commit f4f6dd2698
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;