run updated to use ghostty, and packaged so dependencies can be overlayed

This commit is contained in:
2025-01-10 15:58:56 -06:00
parent e24c468c79
commit 7d8e9fb07a
2 changed files with 29 additions and 9 deletions

26
pkgs/run.nix Normal file
View File

@@ -0,0 +1,26 @@
{
writeShellApplication,
bash,
zenity,
rmlint,
git,
gum,
xclip,
ghostty,
...
}:
writeShellApplication {
name = "run";
runtimeInputs = [
bash
zenity
rmlint
git
gum
xclip
ghostty
];
text = builtins.readFile ../src/packaged_scripts/run.sh;
}