From 0eefdac0f88a909097c618ee2c30b1e4028e78e3 Mon Sep 17 00:00:00 2001 From: outremonde Date: Tue, 10 Jun 2025 21:27:44 -0400 Subject: added a lazygit feature Former-commit-id: 1a23da8ae673827ef368ce401c9f973c4b030195 --- features/user/cli/apps/lazygit.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 features/user/cli/apps/lazygit.nix (limited to 'features/user') 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; + }; +} -- cgit v1.2.3