aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--flake.lock24
-rw-r--r--modules/home/lazygit.nix2
2 files changed, 13 insertions, 13 deletions
diff --git a/flake.lock b/flake.lock
index e7e9aa0..6a3fbc5 100644
--- a/flake.lock
+++ b/flake.lock
@@ -24,11 +24,11 @@
]
},
"locked": {
- "lastModified": 1777042514,
- "narHash": "sha256-8dQRRZzeJhlxVI4i38icAqsHIZ4d8N0uPeJod5UBKeU=",
+ "lastModified": 1777892921,
+ "narHash": "sha256-RxkMuP/P7Sap9sLLg/3LwlGBXId6PJL/dwQNQ3L7Ma8=",
"owner": "dinacomputer",
"repo": "cli",
- "rev": "13aa1b986824d30a1ab1fcdca1bad5dcac537b62",
+ "rev": "0277ff9e82107ee9a582ae6e0da1258a44a60e1a",
"type": "github"
},
"original": {
@@ -62,11 +62,11 @@
]
},
"locked": {
- "lastModified": 1777258755,
- "narHash": "sha256-EC07KwADRE2LdIk7vEDyAaD3I0ZUq24T9jQF9L0iEPk=",
+ "lastModified": 1778009629,
+ "narHash": "sha256-nUoQtf4Zq7DRYJrfv904hjrxjAlWVP6a1pNNFKx3FCg=",
"owner": "nix-community",
"repo": "home-manager",
- "rev": "7f8bbc93d63401e41368d6ddc46a4f631610fa90",
+ "rev": "00ed86e58bb6979a7921859fd1615d19382eac5c",
"type": "github"
},
"original": {
@@ -82,11 +82,11 @@
]
},
"locked": {
- "lastModified": 1775037210,
- "narHash": "sha256-KM2WYj6EA7M/FVZVCl3rqWY+TFV5QzSyyGE2gQxeODU=",
+ "lastModified": 1777780666,
+ "narHash": "sha256-8wURyQMdDkGUarSTKOGdCuFfYiwa3HbzwscUfn3STDE=",
"owner": "LnL7",
"repo": "nix-darwin",
- "rev": "06648f4902343228ce2de79f291dd5a58ee12146",
+ "rev": "8c62fba0854ba15c8917aed18894dbccb48a3777",
"type": "github"
},
"original": {
@@ -97,11 +97,11 @@
},
"nixpkgs": {
"locked": {
- "lastModified": 1776949667,
- "narHash": "sha256-GMSVw35Q+294GlrTUKlx087E31z7KurReQ1YHSKp5iw=",
+ "lastModified": 1777918403,
+ "narHash": "sha256-7QiZv0LcW1yIOLo2LNuCQjWon1Z1r99FwK24hbtBOF4=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "01fbdeef22b76df85ea168fbfe1bfd9e63681b30",
+ "rev": "afc5551119aae6eab73a95c1960891cfe63204f6",
"type": "github"
},
"original": {
diff --git a/modules/home/lazygit.nix b/modules/home/lazygit.nix
index da8996a..124a6a1 100644
--- a/modules/home/lazygit.nix
+++ b/modules/home/lazygit.nix
@@ -11,7 +11,7 @@
context: "files"
description: "Generate commit message with Claude Code"
command: >
- git diff --staged | $HOME/.local/bin/claude -p 'Generate a concise git commit message for these staged changes.
+ git diff --staged | ATT_SKIP_HOOKS=1 $HOME/.local/bin/claude -p 'Generate a concise git commit message for these staged changes.
Output ONLY the raw commit message with no markdown, no code blocks, no backticks, no explanations.
Use conventional commit format.' --model haiku --output-format text > /tmp/commit_msg &&
GIT_EDITOR=nvim git commit -e -F /tmp/commit_msg