Add python's rope for better import language server support
diff --git a/modules/python.nix b/modules/python.nix
new file mode 100644
index 0000000..665a542
--- /dev/null
+++ b/modules/python.nix
@@ -0,0 +1,8 @@
+{ pkgs, ... }: {
+  home.home.packages = [
+    (pkgs.python3.withPackages
+      (pyPkgs: with pyPkgs; [
+        rope
+      ]))
+  ];
+}