Fix ZSH typing

Add .types. for attrsOf as without it nix will not build.

Change-Id: Ifbdb57299c9b2d8ca0cc79b057079cc0ec0e8b79
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/404
Reviewed-by: Skyler Grey <minion@clicks.codes>
Tested-by: Samuel Shuert <coded@clicks.codes>
diff --git a/modules/home/shell/zsh/default.nix b/modules/home/shell/zsh/default.nix
index 6b669fd..30aca44 100644
--- a/modules/home/shell/zsh/default.nix
+++ b/modules/home/shell/zsh/default.nix
@@ -14,12 +14,12 @@
       default = true;
     };
     extraAliases = lib.mkOption {
-      type = lib.attrsOf lib.types.str;
+      type = lib.types.attrsOf lib.types.str;
       description = "Attrset of extra shell aliases";
       default = { };
     };
     dirHashes = lib.mkOption {
-      type = lib.attrsOf lib.types.str;
+      type = lib.types.attrsOf lib.types.str;
       description = "Attrset of ~DIR's";
       default = { };
     };