nixfiles/home/dev/all/archives.nix

19 lines
208 B
Nix
Raw Normal View History

{ pkgs, ... }: {
2021-12-26 14:07:09 +00:00
home.packages = with pkgs; [
2022-02-23 15:37:02 +00:00
libarchive
2021-12-26 12:38:23 +00:00
zip
unzip
2021-12-26 12:38:23 +00:00
p7zip
cabextract
cramfsprogs
zstd
2021-12-26 12:38:23 +00:00
zlib
xz
gzip
bzip2
squashfsTools
cpio
2021-12-26 14:07:09 +00:00
lz4
];
}