1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-18 14:28:15 +00:00

tests/gh-dash: enable gh to test extension adding

This commit is contained in:
Austin Horstman 2025-03-08 00:19:22 -06:00
parent 5ab4305f34
commit 26f6b86264

View file

@ -1,11 +1,14 @@
{
programs.gh-dash = {
enable = true;
settings = {
prSections = [{
title = "My Pull Requests";
filters = "is:open author:@me";
}];
programs = {
gh.enable = true;
gh-dash = {
enable = true;
settings = {
prSections = [{
title = "My Pull Requests";
filters = "is:open author:@me";
}];
};
};
};