feat: Add nix-srisum and nix-srisum-unzip for recursive

This commit is contained in:
Ahmad Ansori Palembani 2024-11-10 11:51:45 +07:00
parent 213f3dd883
commit ad34feaa04
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
4 changed files with 37 additions and 7 deletions

View file

@ -8,7 +8,16 @@ let
py.dnspython
]));
};
custom.inkscape = if pkgs.stdenv.isDarwin then pkgs.casks.inkscape else (pkgs.inkscape.override { python3 = custom.python; });
custom.inkscape =
if pkgs.stdenv.isDarwin then
pkgs.casks.inkscape
else
(pkgs.inkscape.override { python3 = custom.python; });
custom.fastfetch =
if pkgs.stdenv.isDarwin then
pkgs.fastfetch.override { imagemagick_light = pkgs.imagemagick; }
else
pkgs.fastfetch;
in {
inherit custom;
packages = [
@ -17,6 +26,7 @@ in {
pkgs.zoxide
pkgs.ruby
pkgs._7zz
custom.fastfetch
pkgs.enchive
(pkgs.pass.withExtensions (exts: [ exts.pass-otp ]))