dotfiles/nixos/emacs.nix

10 lines
187 B
Nix

{ pkgs, config, specialArgs, ... }:
{
services.emacs = {
enable = true;
defaultEditor = true;
startWithUserSession = "graphical";
socketActivation.enable = true;
};
}