add nix-search-tv overlay

This commit is contained in:
do butterflies cry? 2026-03-22 14:00:44 +10:00
parent 907f048cd3
commit c23c949bf3
Signed by: cry
GPG key ID: F68745A836CA0412
2 changed files with 16 additions and 6 deletions

View file

@ -10,6 +10,20 @@
lib
;
in {
ns = pkgs.writeShellApplication {
name = "ns";
runtimeInputs = with pkgs; [
fzf
nix-search-tv
];
text = builtins.readFile "${pkgs.nix-search-tv.src}/nixpkgs.sh";
excludeShellChecks = [
# SC2016 (info): Expressions don't expand in single quotes, use double quotes for that.
"SC2016"
];
};
angry-oxide = import ../packages/angryoxide {
inherit pkgs lib;
};