Remove wayland, replace it with xmonad
diff --git a/modules/xmonad/xmonad.hs b/modules/xmonad/xmonad.hs
new file mode 100644
index 0000000..518ba33
--- /dev/null
+++ b/modules/xmonad/xmonad.hs
@@ -0,0 +1,10 @@
+-- spell-checker:words xmonad
+import XMonad
+
+import XMonad.Util.EZConfig
+
+main :: IO ()
+main = xmonad $ def
+  { modMask = mod4Mask  -- Use Super as our mod key
+  , terminal = "kitty"  -- Kitty, my beloved <3
+  }