Compare commits
No commits in common. "9a2324c2eb9abdf27cc6748608b6ba3b97cb7137" and "907f048cd3ee75e8fb51a12beb8d60090dec0246" have entirely different histories.
9a2324c2eb
...
907f048cd3
3 changed files with 8 additions and 16 deletions
|
|
@ -1,4 +1,8 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
upkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# Shell
|
# Shell
|
||||||
bash
|
bash
|
||||||
|
|
@ -45,7 +49,7 @@
|
||||||
nix-prefetch-git
|
nix-prefetch-git
|
||||||
nix-index
|
nix-index
|
||||||
nix-unit
|
nix-unit
|
||||||
ns # nix-search-tv overlay
|
upkgs.nix-search-tv
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
python312 # I use 3.12 since it's in a pretty stable state now
|
python312 # I use 3.12 since it's in a pretty stable state now
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,8 @@
|
||||||
curl -sL "https://www.gitignore.io/api/$type"
|
curl -sL "https://www.gitignore.io/api/$type"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
function decompile
|
function decompile
|
||||||
objdump --disassemble --demangle --debugging --debugging-tags $argv | bat --language asm
|
objdump --disassemble --demangle --debugging --debugging-tags $argv | bat --language asm
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -10,20 +10,6 @@
|
||||||
lib
|
lib
|
||||||
;
|
;
|
||||||
in {
|
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 {
|
angry-oxide = import ../packages/angryoxide {
|
||||||
inherit pkgs lib;
|
inherit pkgs lib;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue