forked from colonelpanic/dotfiles
10 lines
187 B
Nix
10 lines
187 B
Nix
|
{ pkgs, config, specialArgs, ... }:
|
||
|
{
|
||
|
services.emacs = {
|
||
|
enable = true;
|
||
|
defaultEditor = true;
|
||
|
startWithUserSession = "graphical";
|
||
|
socketActivation.enable = true;
|
||
|
};
|
||
|
}
|