Compare commits

..

No commits in common. "9a2324c2eb9abdf27cc6748608b6ba3b97cb7137" and "907f048cd3ee75e8fb51a12beb8d60090dec0246" have entirely different histories.

3 changed files with 8 additions and 16 deletions

View file

@ -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

View file

@ -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

View file

@ -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;
};