From b7a38d7634de33cc3b2b5000c144ff29839ed51a Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sat, 7 Feb 2026 22:04:33 -0600 Subject: [PATCH] fixing emacs daemon --- modules/dev/emacs.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/dev/emacs.nix b/modules/dev/emacs.nix index 9c0c67c..72c6545 100644 --- a/modules/dev/emacs.nix +++ b/modules/dev/emacs.nix @@ -84,5 +84,12 @@ extra ++ themes; }; }; + systemd.user.services.emacs = { + Install.WantedBy = [ "graphical-session.target" ]; + Unit = { + After = [ "graphical-session.target" ]; + Wants = [ "graphical-session.target" ]; + }; + }; }; }