nixfiles/profiles/home-manager/dev/all/archives/common.nix

10 lines
131 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = with pkgs; [
libarchive
zip
2024-03-10 20:58:58 +00:00
p7zip
];
programs.zsh.shellAliases.tar = "bsdtar";
}