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