Compare commits
No commits in common. "7c81981aacca1e7c2ea07f861fba60bfe0225c06" and "1fa2752721ab7d2703d06d3c53c29b42f8dedfd1" have entirely different histories.
7c81981aac
...
1fa2752721
@ -61,18 +61,12 @@
|
|||||||
starsector # Nice little game I got coaxed into trying
|
starsector # Nice little game I got coaxed into trying
|
||||||
inputs.hb-downloader.packages.${pkgs.system}.default # My custom humble bundle bulk link extractor for aria2 list format
|
inputs.hb-downloader.packages.${pkgs.system}.default # My custom humble bundle bulk link extractor for aria2 list format
|
||||||
protonup-qt # Proton ge manager
|
protonup-qt # Proton ge manager
|
||||||
protontricks # Tricks
|
|
||||||
ungoogled-chromium # For sites that don't work with firefox based browsers
|
ungoogled-chromium # For sites that don't work with firefox based browsers
|
||||||
abcde # CLI audio ripper
|
abcde # CLI audio ripper
|
||||||
jellyfin-mpv-shim # Jellyfin media with mpv
|
jellyfin-mpv-shim # Jellyfin media with mpv
|
||||||
pandoc # I wish I didn't have to use it
|
pandoc # I wish I didn't have to use it
|
||||||
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
|
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
|
||||||
(retroarch.override {
|
(retroarch.override { cores = with libretro; [ snes9x mgba ]; })
|
||||||
cores = with libretro; [ snes9x mgba gambatte ];
|
|
||||||
}) # Retroarch with cores
|
|
||||||
duckstation # Playstation 1 emulator
|
|
||||||
pcsx2 # Playstation 2 emulator
|
|
||||||
ppsspp-sdl-wayland # Playstation portable emulator
|
|
||||||
(callPackage ./modules/scripts.nix { inherit pkgs; }) # My scripts
|
(callPackage ./modules/scripts.nix { inherit pkgs; }) # My scripts
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -18,13 +18,5 @@ stdenv.mkDerivation {
|
|||||||
# Add dependencies to the runtime for my blog script
|
# Add dependencies to the runtime for my blog script
|
||||||
wrapProgram $out/bin/blog \
|
wrapProgram $out/bin/blog \
|
||||||
--prefix PATH : ${lib.makeBinPath [ hugo rsync git ]}
|
--prefix PATH : ${lib.makeBinPath [ hugo rsync git ]}
|
||||||
|
|
||||||
# Add dependencies to the runtime for my cue2chd script
|
|
||||||
wrapProgram $out/bin/cue2chd \
|
|
||||||
--prefix PATH : ${lib.makeBinPath [ mame-tools ]}
|
|
||||||
|
|
||||||
# Add dependencies to the runtime for my iso2chd script
|
|
||||||
wrapProgram $out/bin/iso2chd \
|
|
||||||
--prefix PATH : ${lib.makeBinPath [ mame-tools ]}
|
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
for File in *.cue
|
|
||||||
do
|
|
||||||
[ -f "$File" ] || continue
|
|
||||||
chdman createcd -i "$File" -o "${File%.cue}.chd"
|
|
||||||
rm -v "$File" "${File%.cue}"*.bin
|
|
||||||
done
|
|
@ -1,8 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
for File in *.iso
|
|
||||||
do
|
|
||||||
[ -f "$File" ] || continue
|
|
||||||
chdman createcd -i "$File" -o "${File%.iso}.chd"
|
|
||||||
rm -v "$File"
|
|
||||||
done
|
|
@ -12,7 +12,6 @@
|
|||||||
"cd $(zoxide query --list | fzf --prompt 'Directory: ' -i --reverse --layout=reverse --border=rounded --info=inline --preview 'eza -A --tree -L 1 {}')";
|
"cd $(zoxide query --list | fzf --prompt 'Directory: ' -i --reverse --layout=reverse --border=rounded --info=inline --preview 'eza -A --tree -L 1 {}')";
|
||||||
gj = ''
|
gj = ''
|
||||||
cd $(find ${config.home.homeDirectory} -name .git -type d -exec dirname {} \; -prune | fzf --prompt "Directory: " -i --reverse --layout=reverse --border=rounded --info=inline --preview "eza -A --tree -L 1 {}")'';
|
cd $(find ${config.home.homeDirectory} -name .git -type d -exec dirname {} \; -prune | fzf --prompt "Directory: " -i --reverse --layout=reverse --border=rounded --info=inline --preview "eza -A --tree -L 1 {}")'';
|
||||||
erm = ''for file in *.zip; do unzip "$file"; rm "$file"; done'';
|
|
||||||
};
|
};
|
||||||
envExtra = ''
|
envExtra = ''
|
||||||
# NNN settings
|
# NNN settings
|
||||||
|
Loading…
Reference in New Issue
Block a user