gitui: add testbed (#2206)

Closes: https://github.com/nix-community/stylix/issues/1157
Link: https://github.com/nix-community/stylix/pull/2206

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
(cherry picked from commit 801843d10e)
This commit is contained in:
dastarruer 2026-02-18 11:34:04 -04:00 committed by NAHO
parent 7e7fa955ab
commit 1a5c9d8be8

View file

@ -0,0 +1,17 @@
{ lib, pkgs, ... }:
{
stylix.testbed.ui.command = {
text = ''
${lib.getExe pkgs.git} init
${lib.getExe pkgs.gitui}
'';
useTerminal = true;
};
home-manager.sharedModules = lib.singleton {
programs = {
git.enable = true;
gitui.enable = true;
};
};
}