feat: Add nix-srisum and nix-srisum-unzip for recursive
This commit is contained in:
parent
213f3dd883
commit
ad34feaa04
4 changed files with 37 additions and 7 deletions
|
@ -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 ]))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue