[NixOS] Enable emacs service in home manager again

This commit is contained in:
2023-08-22 16:35:21 -06:00
parent 98c38736fb
commit 0fd0490714
3 changed files with 18 additions and 0 deletions

9
nixos/emacs.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, config, specialArgs, ... }:
{
services.emacs = {
enable = true;
defaultEditor = true;
startWithUserSession = "graphical";
socketActivation.enable = true;
};
}