14 lines
145 B
Nix
14 lines
145 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
zip
|
||
|
unrar
|
||
|
unzip
|
||
|
atool
|
||
|
p7zip
|
||
|
bzip2
|
||
|
gzip
|
||
|
atool
|
||
|
];
|
||
|
}
|