fix(git): remove --signoff flag from ci alias

- Updated `ci` alias in both NixOS and Home modules to exclude the `--signoff` flag.
- Ensures compatibility and avoids unnecessary signing for commit alias.
This commit is contained in:
Harald Hoyer 2025-09-05 11:14:30 +02:00
parent 58f4ff1401
commit 18a5fd3a6f
2 changed files with 2 additions and 3 deletions

View file

@ -58,7 +58,7 @@ in
};
alias = {
co = "checkout";
ci = "commit --signoff";
ci = "commit";
dlog = "-c diff.external=difft log --ext-diff -p";
dshow = "-c diff.external=difft show --ext-diff";
ddiff = "-c diff.external=difft diff";

View file

@ -1,5 +1,4 @@
{
options,
config,
pkgs,
lib,
@ -51,7 +50,7 @@ in
};
alias = {
co = "checkout";
ci = "commit --signoff";
ci = "commit";
};
pull.ff = "only";
core.pager = "${pkgs.delta}/bin/delta";