Add vimPlugins.camelcasemotion
diff --git a/flake.lock b/flake.lock
index c067a83..cf70a25 100644
--- a/flake.lock
+++ b/flake.lock
@@ -191,6 +191,22 @@
         "type": "github"
       }
     },
+    "nushell-066": {
+      "locked": {
+        "lastModified": 1659703690,
+        "narHash": "sha256-kZdajsxISDBGmK/HZBTb+gVUHFBve9Cbc7BXhgzc5+A=",
+        "owner": "nixos",
+        "repo": "nixpkgs",
+        "rev": "19091dedfef6f3211c27b2e970cf24921b4212e3",
+        "type": "github"
+      },
+      "original": {
+        "owner": "nixos",
+        "repo": "nixpkgs",
+        "rev": "19091dedfef6f3211c27b2e970cf24921b4212e3",
+        "type": "github"
+      }
+    },
     "registry": {
       "flake": false,
       "locked": {
@@ -217,6 +233,7 @@
         "nixpkgs-21-11": "nixpkgs-21-11",
         "nixpkgs-unstable": "nixpkgs-unstable",
         "nurpkgs": "nurpkgs",
+        "nushell-066": "nushell-066",
         "registry": "registry"
       }
     },
diff --git a/flake.nix b/flake.nix
index c3936cb..9bd5cee 100644
--- a/flake.nix
+++ b/flake.nix
@@ -12,6 +12,7 @@
         home-manager.url = "github:nix-community/home-manager/release-22.05";
         nurpkgs.url = "github:nix-community/NUR";
         comma.url = "github:nix-community/comma";
+        nushell-066.url = "github:nixos/nixpkgs/19091dedfef6f3211c27b2e970cf24921b4212e3";
         fzf-tab = {
             url = "github:Aloxaf/fzf-tab";
             flake = false;
@@ -35,6 +36,10 @@
             inherit system;
 
             config = { allowUnfree = true; };
+
+            overlays = [
+                (final: prev: { nushell = prev.callPackage "${extraInputs.nushell-066}/pkgs/shells/nushell" { inherit (prev.darwin.apple_sdk.frameworks) AppKit Security; }; })
+            ];
         };
 
         pkgs-unstable = import nixpkgs-unstable {
diff --git a/src/apps/personal/nushell.nix b/src/apps/personal/nushell.nix
new file mode 100644
index 0000000..dd97f54
--- /dev/null
+++ b/src/apps/personal/nushell.nix
@@ -0,0 +1,5 @@
+{ pkgs, ... }: {
+    home.packages = [
+        pkgs.nushell
+    ];
+}
diff --git a/src/apps/personal/vim.nix b/src/apps/personal/vim.nix
index 5dd21d3..ee205e8 100644
--- a/src/apps/personal/vim.nix
+++ b/src/apps/personal/vim.nix
@@ -152,6 +152,7 @@
       pkgs.vimPlugins.vim-better-whitespace
       pkgs.vimPlugins.nvim-ts-rainbow
       pkgs.vimPlugins.editorconfig-nvim
+      pkgs.vimPlugins.camelcasemotion
       (pkgs.vimPlugins.nvim-treesitter.withPlugins (plugins: pkgs.tree-sitter.allGrammars))
     ];
   };