diff --git a/horsch/github.nix b/horsch/github.nix index 1bb5783..2015359 100644 --- a/horsch/github.nix +++ b/horsch/github.nix @@ -1,29 +1,11 @@ -{ pkgs, lib, ... }: +{ ... }: { - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ - "gh-copilot" - ]; + programs.gh = { + enable = true; - programs = { - gh = { - enable = true; - - settings = { - git_protocol = "ssh"; - }; - - extensions = with pkgs; [ - gh-copilot - gh-dash - ]; - }; - - gh-dash = { - enable = true; - - settings = { - }; + settings = { + git_protocol = "ssh"; }; }; }