mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
25 lines
530 B
Nix
25 lines
530 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.programs.git-credential-oauth;
|
||
|
|
||
|
in {
|
||
|
meta.maintainers = [ lib.maintainers.tomodachi94 ];
|
||
|
|
||
|
options = {
|
||
|
programs.git-credential-oauth = {
|
||
|
enable = lib.mkEnableOption "Git authentication handler for OAuth";
|
||
|
|
||
|
package = lib.mkPackageOption pkgs "git-credential-oauth" { };
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
home.packages = [ cfg.package ];
|
||
|
|
||
|
programs.git.extraConfig.credential.helper =
|
||
|
[ "${cfg.package}/bin/git-credential-oauth" ];
|
||
|
};
|
||
|
}
|