11 lines
217 B
Nix
11 lines
217 B
Nix
|
{ pkgs, ... }: {
|
||
|
imports = [ ./default.nix ];
|
||
|
# Emacs server service
|
||
|
services.emacs = {
|
||
|
enable = true;
|
||
|
package = pkgs.emacs28NativeComp;
|
||
|
defaultEditor = true;
|
||
|
startWithUserSession = true;
|
||
|
};
|
||
|
}
|