10 lines
181 B
Nix
10 lines
181 B
Nix
{ pkgs, config, specialArgs, ... }:
|
|
{
|
|
services.emacs = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
startWithUserSession = false;
|
|
socketActivation.enable = true;
|
|
};
|
|
}
|