[nix] Set up the gh cli

This commit is contained in:
Alyxia Sother 2023-06-12 12:45:09 +02:00
parent 9862870669
commit 55abee0819
No known key found for this signature in database
GPG Key ID: 01E16C4E775A37E4
1 changed files with 8 additions and 1 deletions

View File

@ -22,10 +22,17 @@
};
extraConfig = {
tag.gpgsign = true;
init.defaultBranch = "master";
};
};
programs.gh = {
enable = true;
# Why the *fuck* are these packages as opposed to GitHub links???
extensions = with pkgs; [
gh-actions-cache
];
};
programs.gitui.enable = true;
}