git-credential-oauth: fix use of mkIf and add tests

Closes #6005
This commit is contained in:
Tomo 2024-10-26 23:45:32 -07:00 committed by GitHub
parent 93435d27d2
commit 05d9bee4a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 42 additions and 1 deletions

View file

@ -30,7 +30,8 @@ in {
home.packages = [ cfg.package ];
programs.git.extraConfig.credential.helper = [
("${cfg.package}/bin/git-credential-oauth" + lib.mkIf cfg.extraFlags
("${cfg.package}/bin/git-credential-oauth"
+ lib.optionalString (cfg.extraFlags != [ ])
" ${lib.strings.concatStringsSep " " cfg.extraFlags}")
];
};