diff --git a/groups/cryos/programs.nix b/groups/cryos/programs.nix index 9d7eaa7..6b2fd55 100644 --- a/groups/cryos/programs.nix +++ b/groups/cryos/programs.nix @@ -1,4 +1,8 @@ -{pkgs, ...}: { +{ + pkgs, + upkgs, + ... +}: { environment.systemPackages = with pkgs; [ # Shell bash @@ -45,7 +49,7 @@ nix-prefetch-git nix-index nix-unit - ns # nix-search-tv overlay + upkgs.nix-search-tv # Python python312 # I use 3.12 since it's in a pretty stable state now diff --git a/homes/modules/shell/fish.nix b/homes/modules/shell/fish.nix index 07f3f59..af2d8d3 100755 --- a/homes/modules/shell/fish.nix +++ b/homes/modules/shell/fish.nix @@ -54,6 +54,8 @@ curl -sL "https://www.gitignore.io/api/$type" end + end + function decompile objdump --disassemble --demangle --debugging --debugging-tags $argv | bat --language asm end diff --git a/overlays/default.nix b/overlays/default.nix index b4d7680..dfeb277 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -10,20 +10,6 @@ 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; };