diff --git a/home/common/ghostty.nix b/home/common/ghostty.nix
index 3a2f55e..a05ca7f 100644
--- a/home/common/ghostty.nix
+++ b/home/common/ghostty.nix
@@ -29,7 +29,6 @@
         unfocused-split-opacity = 1.0;
 
         shell-integration = "fish";
-        initial-command = "nvim-remote";
 
         window-decoration = true;
         gtk-single-instance = true;
@@ -129,7 +128,7 @@
           "TerminalEmulator"
         ];
         exec = ''
-          ghostty --class=com.mitchellh.ghostty-devel --command="ssh -t devel" --initial-command="ssh -t devel nvim-remote"
+          ghostty --class=com.mitchellh.ghostty-devel --command="ssh -t devel" --initial-command="ssh -t devel"
         '';
         genericName = "Ghostty (devel)";
         icon = "com.mitchellh.ghostty";
diff --git a/home/common/gnome.nix b/home/common/gnome.nix
index de67eb7..75343f5 100644
--- a/home/common/gnome.nix
+++ b/home/common/gnome.nix
@@ -13,7 +13,6 @@ with lib.hm.gvariant;
       gnomeExtensions.desktop-clock
       gnomeExtensions.emoji-copy
       gnomeExtensions.just-perfection
-      gnomeExtensions.vitals
     ];
 
     dconf.settings = {
@@ -168,7 +167,6 @@ with lib.hm.gvariant;
         enabled-extensions = [
           "emoji-copy@felipeftn"
           "just-perfection-desktop@just-perfection"
-          "Vitals@CoreCoding.com"
         ];
       };
 
@@ -187,10 +185,6 @@ with lib.hm.gvariant;
         top-panel-position = 0;
       };
 
-      "org/gnome/shell/extensions/vitals" = {
-        update-time = 15;
-      };
-
       "org/gnome/tweaks" = {
         show-extensions-notice = false;
       };
diff --git a/home/common/nvim/blink-cmp.lua b/home/common/nvim/blink-cmp.lua
index b34b6fc..b59fe58 100644
--- a/home/common/nvim/blink-cmp.lua
+++ b/home/common/nvim/blink-cmp.lua
@@ -1,6 +1,7 @@
 require 'blink-cmp'.setup({
   keymap = {
     preset = 'enter',
+    -- preset = 'super-tab',
     ["<PageDown>"] = { "scroll_documentation_down" },
     ["<PageUp>"] = { "scroll_documentation_up" },
   },
@@ -18,11 +19,11 @@ require 'blink-cmp'.setup({
     ghost_text = { enabled = true },
 
     list = {
-      selection = "manual",
+      selection = { preselect = false, auto_insert = false },
     },
 
     menu = {
-      auto_show = true,
+      auto_show = false,
     },
   },
 
@@ -32,10 +33,6 @@ require 'blink-cmp'.setup({
     },
   },
 
-  keymap = {
-    preset = 'super-tab',
-  },
-
   signature = {
     enabled = true,
     window = { border = 'rounded', },
diff --git a/hosts/nemo/default.nix b/hosts/nemo/default.nix
index be2b346..cc1db74 100644
--- a/hosts/nemo/default.nix
+++ b/hosts/nemo/default.nix
@@ -158,12 +158,6 @@
     };
   };
 
-  services.sunshine = {
-    enable = true;
-    openFirewall = true;
-    settings = { };
-  };
-
   patagia = {
     desktop.enable = true;
     plymouth.enable = true;
@@ -183,8 +177,6 @@
     OTEL_EXPORTER_OTLP_ENDPOINT = "https://otel.aarn.patagia.net";
   };
 
-  programs.coolercontrol.enable = true;
-
   users.users.dln = {
     isNormalUser = true;
     description = "Daniel Lundin";