cram
This commit is contained in:
parent
822cf0e67a
commit
0a86380c0e
|
@ -1,18 +1,24 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
libarchive
|
||||
zip
|
||||
unzip
|
||||
p7zip
|
||||
cabextract
|
||||
cramfsprogs
|
||||
zstd
|
||||
zlib
|
||||
xz
|
||||
gzip
|
||||
bzip2
|
||||
squashfsTools
|
||||
cpio
|
||||
lz4
|
||||
];
|
||||
home.packages = with pkgs;
|
||||
[
|
||||
libarchive
|
||||
zip
|
||||
unzip
|
||||
p7zip
|
||||
cabextract
|
||||
zstd
|
||||
zlib
|
||||
xz
|
||||
gzip
|
||||
bzip2
|
||||
squashfsTools
|
||||
cpio
|
||||
lz4
|
||||
] ++ (if pkgs.stdenv.isLinux then
|
||||
[
|
||||
# NOINLINE
|
||||
cramfsprogs
|
||||
]
|
||||
else
|
||||
[ ]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue