8 lines
171 B
Nix
8 lines
171 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
services.eternal-terminal = {
|
||
|
enable = true;
|
||
|
};
|
||
|
networking.firewall.allowedTCPPorts = [ config.services.eternal-terminal.port ];
|
||
|
}
|