Compare commits

..

No commits in common. "49dda752cb8196f8e2be1e4794ba571eb3bb5629" and "dc6a6c95ffb5a9b2885ad1a11723cc002d413169" have entirely different histories.

View file

@ -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";
};
};
}