Link: https://github.com/danth/stylix/pull/1191 Reviewed-by: awwpotato <awwpotato@voidq.com> Reviewed-by: Flameopathic <64027365+Flameopathic@users.noreply.github.com>
18 lines
306 B
Nix
18 lines
306 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
stylix.testbed.ui.command = {
|
|
text = ''
|
|
${lib.getExe pkgs.git} init
|
|
${lib.getExe pkgs.lazygit}
|
|
'';
|
|
useTerminal = true;
|
|
};
|
|
|
|
home-manager.sharedModules = lib.singleton {
|
|
programs = {
|
|
git.enable = true;
|
|
lazygit.enable = true;
|
|
};
|
|
};
|
|
}
|