dotfiles/home/modules/cli/files/unzip/default.nix
2025-01-24 22:56:53 -06:00

11 lines
107 B
Nix
Executable file

{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
unzip
;
};
}