From 28ffa10a59b0f67aaa3c69309002a5d31db627c7 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Thu, 5 Dec 2024 17:02:46 -0500 Subject: [PATCH] add github copilot extension to gh cli --- modules/common/shell/github.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/common/shell/github.nix b/modules/common/shell/github.nix index ccf5d82..0f0c134 100644 --- a/modules/common/shell/github.nix +++ b/modules/common/shell/github.nix @@ -6,6 +6,8 @@ }: { + unfreePackages = [ "gh-copilot" ]; + home-manager.users.${config.user} = { programs.gh = lib.mkIf config.home-manager.users.${config.user}.programs.git.enable { @@ -15,6 +17,7 @@ extensions = [ pkgs.gh-collaborators pkgs.gh-dash + pkgs.gh-copilot ]; };