Link: https://github.com/nix-community/stylix/pull/1700 Reviewed-by: awwpotato <awwpotato@voidq.com>
17 lines
305 B
Nix
17 lines
305 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;
|
|
};
|
|
};
|
|
}
|