nixos/home/emacs/server.nix
Evie Litherland-Smith 228170166f Start emacs server with session instead of socket
Add zip and unzip programs for emacs archive management
2023-09-01 16:30:08 +01:00

13 lines
228 B
Nix

{ config, ... }:
{
imports = [ ./default.nix ];
services.emacs = {
enable = true;
package = config.programs.emacs.package;
defaultEditor = true;
startWithUserSession = true;
client.enable = true;
};
}