diff options
| -rw-r--r-- | features/user/cli/apps/lazygit.nix | 12 | ||||
| -rw-r--r-- | users/nzxt-desktop/culsans.nix | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/features/user/cli/apps/lazygit.nix b/features/user/cli/apps/lazygit.nix new file mode 100644 index 0000000..9d19a36 --- /dev/null +++ b/features/user/cli/apps/lazygit.nix @@ -0,0 +1,12 @@ +{ + config, + lib, + ... +}: let + cfg = config.features.cli.apps.lazygit; +in { + options.features.cli.apps.lazygit.enable = lib.mkEnableOption "lazygit"; + config = lib.mkIf cfg.enable { + programs.lazygit.enable = true; + }; +} diff --git a/users/nzxt-desktop/culsans.nix b/users/nzxt-desktop/culsans.nix index 17c4775..7c070ee 100644 --- a/users/nzxt-desktop/culsans.nix +++ b/users/nzxt-desktop/culsans.nix @@ -37,6 +37,7 @@ btop.enable = true; helix.enable = true; zellij.enable = true; + lazygit.enable = true; }; utils = { git.enable = true; |
