Compare commits

...

2 commits

Author SHA1 Message Date
49dda752cb
feat(gh): add gh-dash 2025-03-25 08:40:22 +01:00
ada1a9448a
feat(gh): add gh-copilot 2025-03-25 08:39:50 +01:00

View file

@ -1,11 +1,29 @@
{ ... }:
{ pkgs, lib, ... }:
{
programs.gh = {
enable = true;
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"gh-copilot"
];
settings = {
git_protocol = "ssh";
programs = {
gh = {
enable = true;
settings = {
git_protocol = "ssh";
};
extensions = with pkgs; [
gh-copilot
gh-dash
];
};
gh-dash = {
enable = true;
settings = {
};
};
};
}