13 lines
137 B
Nix
13 lines
137 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: let
|
|
port = 8123;
|
|
in {
|
|
imports = [];
|
|
|
|
networking.firewall.allowedTCPPorts = [port];
|
|
}
|