mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
16 lines
343 B
Nix
16 lines
343 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.server.emacs = lib.mkEnableOption "enable emacs server on server";
|
|
config = lib.mkIf config.swarselsystems.server.emacs {
|
|
|
|
networking.firewall.allowedTCPPorts = [ 9812 ];
|
|
|
|
services.emacs = {
|
|
enable = true;
|
|
install = true;
|
|
startWithGraphical = false;
|
|
};
|
|
|
|
};
|
|
|
|
}
|