312 current 1970-01-01 01:00:00 23.11.20240514.9ddcaff 6.1.90 *

This commit is contained in:
2024-05-18 20:22:28 +02:00
parent bcc917a2da
commit f3d2da344f
4 changed files with 54 additions and 60 deletions

View File

@ -1,11 +1,23 @@
{...}: {
programs.lazygit = {
enable = true;
settings = {
gui = {
shwoRandomTip = false;
nerdFontsVersion = "3";
border = "rounded";
{
lib,
config,
...
}: let
cfg = config.git.lazygit;
in {
options = {
git.lazygit.enable = lib.mkEnableOption "lazygit, a git tui";
};
config = lib.mkIf cfg.enable {
programs.lazygit = {
enable = true;
settings = {
gui = {
shwoRandomTip = false;
nerdFontsVersion = "3";
border = "rounded";
};
};
};
};