summaryrefslogtreecommitdiff
path: root/features/user/cli/apps/lazygit.nix
diff options
context:
space:
mode:
Diffstat (limited to 'features/user/cli/apps/lazygit.nix')
-rw-r--r--features/user/cli/apps/lazygit.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/features/user/cli/apps/lazygit.nix b/features/user/cli/apps/lazygit.nix
deleted file mode 100644
index 9d19a36..0000000
--- a/features/user/cli/apps/lazygit.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- 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;
- };
-}