diff --git a/modules/hm/shell/misc.nix b/modules/hm/shell/misc.nix new file mode 100644 index 0000000..3652029 --- /dev/null +++ b/modules/hm/shell/misc.nix @@ -0,0 +1,7 @@ +{ + flake.modules.homeManager.shell = + { pkgs, ... }: + { + home.packages = with pkgs; [ unzip ]; + }; +}