From 07daae7770da1201de6825de9b65eab0fcd81ca8 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Wed, 29 Oct 2025 00:48:37 -0600 Subject: [PATCH] Add rmlint to Nix package dependencies in run.nix for improved functionality --- pkgs/run.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/run.nix b/pkgs/run.nix index 9fa9ead..6c33625 100644 --- a/pkgs/run.nix +++ b/pkgs/run.nix @@ -6,6 +6,7 @@ gum, xclip, ghostty, + rmlint, callPackage, ... }: @@ -19,7 +20,7 @@ writeShellApplication { gum xclip ghostty - (callPackage ../pkgs_pr/rmlint.nix { }) + rmlint ]; text = builtins.readFile ../src/packaged_scripts/run.sh;