Split out lazygit from home config.

This commit is contained in:
jay
2025-07-02 05:33:51 -04:00
parent 02288500e8
commit 0e371fc26f
2 changed files with 4 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
imports = [ imports = [
inputs.hyprpanel.homeManagerModules.hyprpanel inputs.hyprpanel.homeManagerModules.hyprpanel
./programs/lazygit.nix
./programs/rofi.nix ./programs/rofi.nix
./services/arrpc.nix ./services/arrpc.nix
./services/fluidsynth.nix ./services/fluidsynth.nix
@@ -60,8 +61,6 @@
}; };
}; };
programs.lazygit.enable = true;
programs.git = { programs.git = {
enable = true; enable = true;
userEmail = "jay@zerojay.com"; userEmail = "jay@zerojay.com";

View File

@@ -0,0 +1,3 @@
{ pkgs, ...}: {
programs.lazygit.enable = true;
}