diff --git a/hosts/PW05CH3L/configuration.nix b/hosts/PW05CH3L/configuration.nix
index 75f7b504..bfb54288 100644
--- a/hosts/PW05CH3L/configuration.nix
+++ b/hosts/PW05CH3L/configuration.nix
@@ -1,3 +1,5 @@
+{ pkgs, ... }:
+
 {
   imports = [
     ../common
@@ -9,7 +11,14 @@
 
   cli = {
     docker.enable = true;
-    password-store.enable = true;
+
+    password-store = {
+      enable = true;
+
+      extensions = with pkgs.passExtensions; [
+        pass-otp
+      ];
+    };
   };
 
   wsl = {