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