From ffeb02cb84aa2c77fa9008b5388fb6af7a30e50d Mon Sep 17 00:00:00 2001 From: tux Date: Wed, 6 May 2026 21:08:18 +0530 Subject: [PATCH] feat: add misc --- modules/hm/shell/misc.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/hm/shell/misc.nix 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 ]; + }; +}