diff --git a/home/dev/all/archives.nix b/home/dev/all/archives.nix index ed67f96..b9e73c5 100644 --- a/home/dev/all/archives.nix +++ b/home/dev/all/archives.nix @@ -1,24 +1,18 @@ { pkgs, ... }: { - 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 - [ ]); + home.packages = with pkgs; [ + libarchive + zip + unzip + p7zip + unrar + cabextract + zstd + zlib + xz + gzip + bzip2 + squashfsTools + cpio + lz4 + ]; }