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)
17 lines
301 B
Nix
17 lines
301 B
Nix
{ 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;
|
|
};
|
|
};
|
|
}
|