aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-01 20:14:41 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-01 20:14:41 +0200
commit35409f3fddf4079926b0a079e6d6fd1adfe13886 (patch)
tree99a2b94db41e80b4b64dba128d1793c3a85a87bf /modules
parentscripts/unflake.sh: Explain how the npins version hack works (diff)
downloadnixos-config-35409f3fddf4079926b0a079e6d6fd1adfe13886.zip
pkgs/git-cgit: Init
Diffstat (limited to 'modules')
-rw-r--r--modules/by-name/gi/git/module.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/by-name/gi/git/module.nix b/modules/by-name/gi/git/module.nix
index 64a64904..62411a6b 100644
--- a/modules/by-name/gi/git/module.nix
+++ b/modules/by-name/gi/git/module.nix
@@ -9,6 +9,7 @@
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{
lib,
+ pkgs,
config,
...
}: let
@@ -43,6 +44,11 @@ in {
};
};
+ # Add my custom git-scripts
+ home.packages = [
+ pkgs.git-cgit # Allows fast cgit settings setup
+ ];
+
programs.git = {
enable = true;