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