Files
nix-config/modules/hm/shell/misc.nix
2026-05-06 21:08:18 +05:30

8 lines
116 B
Nix

{
flake.modules.homeManager.shell =
{ pkgs, ... }:
{
home.packages = with pkgs; [ unzip ];
};
}