1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 13:57:31 +02:00

emacs: Fix socket activation

This commit is contained in:
Rodney Lorrimar 2023-11-09 17:27:45 +08:00 committed by Mikilio
parent 2e4250a532
commit 5136542501
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F
2 changed files with 15 additions and 1 deletions

View file

@ -205,9 +205,21 @@ in {
FileDescriptorName = "server"; FileDescriptorName = "server";
SocketMode = "0600"; SocketMode = "0600";
DirectoryMode = "0700"; DirectoryMode = "0700";
# This prevents the service from immediately starting again
# after being stopped, due to the function
# `server-force-stop' present in `kill-emacs-hook', which
# calls `server-running-p', which opens the socket file.
FlushPending = true;
}; };
Install = { WantedBy = [ "sockets.target" ]; }; Install = {
WantedBy = [ "sockets.target" ];
# Adding this Requires= dependency ensures that systemd
# manages the socket file, in the case where the service is
# started when the socket is stopped.
# The socket unit is implicitly ordered before the service.
RequiredBy = [ "emacs.service" ];
};
}; };
}) })
]); ]);

View file

@ -1,9 +1,11 @@
[Install] [Install]
RequiredBy=emacs.service
WantedBy=sockets.target WantedBy=sockets.target
[Socket] [Socket]
DirectoryMode=0700 DirectoryMode=0700
FileDescriptorName=server FileDescriptorName=server
FlushPending=true
ListenStream=%t/emacs/server ListenStream=%t/emacs/server
SocketMode=0600 SocketMode=0600