10 lines
174 B
Nix
10 lines
174 B
Nix
{ inputs, config, pkgs, lib, ... }:
|
|
|
|
{
|
|
services.emacs = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
socketActivation.enable = true;
|
|
client.enable = true;
|
|
};
|
|
}
|