This commit is contained in:
ChaotiCryptidz 2022-03-09 19:49:20 +00:00
parent 822cf0e67a
commit 0a86380c0e
No known key found for this signature in database

View file

@ -1,11 +1,11 @@
{ pkgs, ... }: { { pkgs, ... }: {
home.packages = with pkgs; [ home.packages = with pkgs;
[
libarchive libarchive
zip zip
unzip unzip
p7zip p7zip
cabextract cabextract
cramfsprogs
zstd zstd
zlib zlib
xz xz
@ -14,5 +14,11 @@
squashfsTools squashfsTools
cpio cpio
lz4 lz4
]; ] ++ (if pkgs.stdenv.isLinux then
[
# NOINLINE
cramfsprogs
]
else
[ ]);
} }