Commit 53c5f05f6ba8

Vincent Demeester <vincent@sbr.pm>
2026-01-12 12:54:45
feat(shell): enable shpool service with systemd socket activation
- Prevent SSH shpool session failures when daemon isn't running - Ensure reliable TRAMP connections for Emacs remote file access - Auto-start daemon on demand across all systems via socket activation
1 parent a570c33
Changed files (1)
home
common
home/common/shell/default.nix
@@ -46,9 +46,12 @@
     mosh
     ripgrep
 
-    shpool
+    # shpool is enabled via services.shpool
     # ugrep
     scripts
     wol
   ];
+
+  # Enable shpool with systemd socket activation
+  services.shpool.enable = true;
 }