summaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
Diffstat (limited to 'features')
-rw-r--r--features/user/cli/apps/lazygit.nix12
1 files changed, 12 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;
+ };
+}