From 392d97eed3744922dbbe8dd412ca2fa4119430f0 Mon Sep 17 00:00:00 2001 From: Chris Kruining Date: Sun, 30 Mar 2025 22:50:45 +0200 Subject: [PATCH] git cleanup --- modules/home/shell/toolset/git.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/home/shell/toolset/git.nix b/modules/home/shell/toolset/git.nix index 3b7ad25..165f547 100644 --- a/modules/home/shell/toolset/git.nix +++ b/modules/home/shell/toolset/git.nix @@ -13,20 +13,20 @@ in home-manager.users.${user} = { home.packages = attrValues { - inherit (pkgs) act dura lazygit; - inherit (pkgs.gitAndTools) gh git-open git-crypt; + inherit (pkgs) lazygit; + # inherit (pkgs.gitAndTools) gh git-open git-crypt; }; programs = { zsh.initExtra = '' - # -------===[ Helpful Git Fn's ]===------- # - gitignore() { + # -------===[ Helpful Git Fn's ]===------- # + gitignore() { curl -s -o .gitignore https://gitignore.io/api/$1 - } + } ''; fish.functions = { - gitignore = "curl -sL https://www.gitignore.io/api/$argv"; + gitignore = "curl -sL https://www.gitignore.io/api/$argv"; }; git = {