.dotfiles/profiles/server/nixos/emacs.nix
2024-12-16 18:10:16 +01:00

15 lines
251 B
Nix

{ lib, config, ... }:
{
config = lib.mkIf config.swarselsystems.server.emacs {
networking.firewall.allowedTCPPorts = [ 9812 ];
services.emacs = {
enable = true;
install = true;
startWithGraphical = false;
};
};
}