nixfiles/profiles/home-manager/dev/all/archives/common.nix
2024-07-24 14:13:59 +01:00

10 lines
131 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
libarchive
zip
p7zip
];
programs.zsh.shellAliases.tar = "bsdtar";
}