From 5ab4305f345ccf628fbcaa7a2dfd3696accd907b Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sat, 8 Mar 2025 00:05:57 -0600 Subject: [PATCH] gh-dash: fix Missing mkIf --- modules/programs/gh-dash.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/gh-dash.nix b/modules/programs/gh-dash.nix index 324d0e81c..e1d4aa7ca 100644 --- a/modules/programs/gh-dash.nix +++ b/modules/programs/gh-dash.nix @@ -34,7 +34,7 @@ in { config = lib.mkIf cfg.enable { home.packages = lib.mkIf (cfg.package != null) [ cfg.package ]; - programs.gh.extensions = (cfg.package != null) [ cfg.package ]; + programs.gh.extensions = lib.mkIf (cfg.package != null) [ cfg.package ]; xdg.configFile."gh-dash/config.yml".source = yamlFormat.generate "gh-dash-config.yml" cfg.settings;