diff --git a/nix/home/opdavies/hosts/lemp11.nix b/nix/home/opdavies/hosts/lemp11.nix
index bdabdaa1..c2530234 100644
--- a/nix/home/opdavies/hosts/lemp11.nix
+++ b/nix/home/opdavies/hosts/lemp11.nix
@@ -3,7 +3,6 @@
 {
   features = {
     cli = {
-      bluetuith.enable = true;
       direnv.enable = true;
       tmux-sessionizer.enable = true;
     };
diff --git a/nix/home/opdavies/hosts/t490.nix b/nix/home/opdavies/hosts/t490.nix
index bdabdaa1..c2530234 100644
--- a/nix/home/opdavies/hosts/t490.nix
+++ b/nix/home/opdavies/hosts/t490.nix
@@ -3,7 +3,6 @@
 {
   features = {
     cli = {
-      bluetuith.enable = true;
       direnv.enable = true;
       tmux-sessionizer.enable = true;
     };
diff --git a/nix/modules/home-manager/features/cli/bat.nix b/nix/modules/home-manager/features/cli/bat.nix
deleted file mode 100644
index 119d47fe..00000000
--- a/nix/modules/home-manager/features/cli/bat.nix
+++ /dev/null
@@ -1 +0,0 @@
-{ programs.bat.enable = true; }
diff --git a/nix/modules/home-manager/features/cli/bluetuith.nix b/nix/modules/home-manager/features/cli/bluetuith.nix
deleted file mode 100644
index e52812e6..00000000
--- a/nix/modules/home-manager/features/cli/bluetuith.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{
-  config,
-  lib,
-  pkgs,
-  ...
-}:
-
-with lib;
-
-{
-  options.features.cli.bluetuith.enable = mkEnableOption "Enable bluetuith";
-
-  config = mkIf config.features.cli.bluetuith.enable {
-    home.packages = with pkgs; [
-      bluetuith
-    ];
-
-    xdg.configFile."bluetuith/bluetuith.conf" = {
-      text = ''
-        {
-          adapter: ""
-          adapter-states: ""
-          connect-bdaddr: ""
-          gsm-apn: ""
-          gsm-number: ""
-          keybindings: {
-            NavigateDown: j
-            NavigateUp: k
-          }
-          receive-dir: ""
-          theme: {}
-        }
-      '';
-    };
-  };
-}
diff --git a/nix/modules/home-manager/features/cli/default.nix b/nix/modules/home-manager/features/cli/default.nix
index d59db6f3..7e268d73 100644
--- a/nix/modules/home-manager/features/cli/default.nix
+++ b/nix/modules/home-manager/features/cli/default.nix
@@ -30,15 +30,10 @@
         ;
     })
 
-    ./bat.nix
     ./bin.nix
-    ./bluetuith.nix
     ./direnv.nix
     ./fzf.nix
     ./git.nix
-    ./htop.nix
-    ./lsd.nix
-    ./pet.nix
     ./phpactor.nix
     ./ripgrep.nix
     ./starship.nix
diff --git a/nix/modules/home-manager/features/cli/htop.nix b/nix/modules/home-manager/features/cli/htop.nix
deleted file mode 100644
index 929a6aef..00000000
--- a/nix/modules/home-manager/features/cli/htop.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  programs.htop = {
-    enable = true;
-
-    settings = {
-      show_cpu_temperature = true;
-    };
-  };
-}
diff --git a/nix/modules/home-manager/features/cli/lsd.nix b/nix/modules/home-manager/features/cli/lsd.nix
deleted file mode 100644
index 51a31244..00000000
--- a/nix/modules/home-manager/features/cli/lsd.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  programs.lsd = {
-    enable = true;
-    enableAliases = false;
-
-    settings = {
-      icons.when = "never";
-    };
-  };
-}
diff --git a/nix/modules/home-manager/features/cli/pet.nix b/nix/modules/home-manager/features/cli/pet.nix
deleted file mode 100644
index eae5c7e3..00000000
--- a/nix/modules/home-manager/features/cli/pet.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-  programs.pet = {
-    enable = true;
-
-    snippets = [
-      {
-        command = "nix flake lock --update-input <input-name>";
-        description = "Display a log of a Git repository, showing each commit on its own line.";
-        output = "";
-        tag = [ "git" ];
-      }
-
-      {
-        command = "nix flake lock --update-input opdavies-nvim";
-        description = "Update a single input within a Nix flake.";
-        output = "";
-        tag = [
-          "nix"
-          "nix-flake"
-        ];
-      }
-    ];
-  };
-}
diff --git a/nix/modules/home-manager/features/cli/zsh/aliases.nix b/nix/modules/home-manager/features/cli/zsh/aliases.nix
index 934600b6..fe7de689 100644
--- a/nix/modules/home-manager/features/cli/zsh/aliases.nix
+++ b/nix/modules/home-manager/features/cli/zsh/aliases.nix
@@ -5,7 +5,6 @@
   "..." = "cd ../..";
   "...." = "cd ../../..";
   "....." = "cd ../../../..";
-  cat = "bat";
   s = "secrets";
   secrets = ''doppler --project "$(whoami)" run'';
   tag = "tag-release";