[NixOS] [Emacs] Hopefully got socket activation right this time

This commit is contained in:
Ivan Malison 2023-08-22 18:56:41 -06:00
parent f925472896
commit ff0544b4c1

View File

@ -1,9 +1,9 @@
{ pkgs, config, specialArgs, ... }:
{
services.emacs = {
enable = false;
enable = true;
defaultEditor = true;
startWithUserSession = "graphical";
startWithUserSession = false;
socketActivation.enable = true;
};
}