From 26f6b862645ff281f3bada5d406e8c20de8d837c Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sat, 8 Mar 2025 00:19:22 -0600 Subject: [PATCH] tests/gh-dash: enable gh to test extension adding --- tests/modules/programs/gh-dash/config.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/tests/modules/programs/gh-dash/config.nix b/tests/modules/programs/gh-dash/config.nix index cb07d13aa..cec1b8b3e 100644 --- a/tests/modules/programs/gh-dash/config.nix +++ b/tests/modules/programs/gh-dash/config.nix @@ -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"; + }]; + }; }; };