From b84191db127c16a92cbdf7f7b9969d58bb456699 Mon Sep 17 00:00:00 2001 From: Aleksana Date: Wed, 17 Jan 2024 23:47:58 +0000 Subject: [PATCH] gh: add github gist to default credential hosts --- modules/programs/gh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/gh.nix b/modules/programs/gh.nix index 192762a2..7e688549 100644 --- a/modules/programs/gh.nix +++ b/modules/programs/gh.nix @@ -104,7 +104,7 @@ in { hosts = mkOption { type = types.listOf types.str; - default = [ "https://github.com" ]; + default = [ "https://github.com" "https://gist.github.com" ]; description = "GitHub hosts to enable the gh git credential helper for"; example = literalExpression '' [ "https://github.com" "https://github.example.com" ]