Disabling Emacs server in home-manager module

This commit is contained in:
Andrea Ciceri 2023-02-13 10:38:10 +01:00
parent 0487fc1dd3
commit ababc8ef69
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
2 changed files with 8 additions and 6 deletions

View file

@ -31,11 +31,13 @@
package = ccrEmacsConfig.package;
};
services.emacs = {
enable = true;
client.enable = true;
defaultEditor = true;
socketActivation.enable = true;
startWithUserSession = true;
# TODO Re-enable, this is causing some problems with magit, probably it
# would be sufficient disabling `socketActivation`
enable = false;
client.enable = false;
defaultEditor = false;
socketActivation.enable = false;
startWithUserSession = false;
};
home.packages = with pkgs;
[