diff --git a/modules/home/console/tools/utils.nix b/modules/home/console/tools/utils.nix index 5354ff6..cbe00aa 100644 --- a/modules/home/console/tools/utils.nix +++ b/modules/home/console/tools/utils.nix @@ -15,32 +15,26 @@ in { inherit (pkgs) bc # Calculator - + # file utility - duf du-dust fd ripgrep # archive - zip unzip unrar # file transfer - rsync wget httpie # Better curl - + # resource manager - powertop #shell scripting - gum # audio ctrl - pamixer diffsitter # Better diff jq # JSON pretty printer and manipulator @@ -49,15 +43,13 @@ in { killall acpi # Notifications - libnotify # Nix tooling - alejandra ; #AI - inherit (self'.packages) repopack; + inherit (self'.packages) repomix; }; }; } diff --git a/outputs/pkgs/default.nix b/outputs/pkgs/default.nix index b49dd40..abdead4 100644 --- a/outputs/pkgs/default.nix +++ b/outputs/pkgs/default.nix @@ -17,7 +17,7 @@ }; in { packages = { - repopack = callPackage ./repopack {}; + repomix = callPackage ./repomix {}; live-buds-cli = callPackage ./live-buds-cli {}; website = callPackage ./website {}; caddy-with-cloudflare = callPackage ./caddy-with-cloudflare {}; diff --git a/outputs/pkgs/repopack/default.nix b/outputs/pkgs/repomix/default.nix similarity index 50% rename from outputs/pkgs/repopack/default.nix rename to outputs/pkgs/repomix/default.nix index b9a67fd..7ff9f30 100644 --- a/outputs/pkgs/repopack/default.nix +++ b/outputs/pkgs/repomix/default.nix @@ -4,24 +4,24 @@ fetchFromGitHub, }: buildNpmPackage rec { - pname = "repopack"; - version = "0.1.24"; + pname = "repomix"; + version = "0.2.20"; src = fetchFromGitHub { owner = "yamadashy"; - repo = "repopack"; + repo = "repomix"; rev = "v${version}"; - hash = "sha256-+UcpfxMcG47j4fSOAXBvNgwKy0nSC6UKJvNc5G8c6U0="; + hash = "sha256-ZfkaopnftD6wJ0KAScE1q2u3/jM36QVwx6CgPiS1nWY"; }; - npmDepsHash = "sha256-Jyp48JNRuqxGSNi6eLrnOkF4Z+OResbtfbTYHg1S1mU="; + npmDepsHash = "sha256-/ocQ5vp67w5U6Gx+1LgJzcObsvKeTVN9BOEKXSb6oU0"; meta = { description = '' A powerful tool that packs your entire repository into a single, AI-friendly file. ''; - homepage = "https://github.com/yamadashy/repopack"; - mainProgram = "repopack"; + homepage = "https://github.com/yamadashy/repomix"; + mainProgram = "repomix"; }; }