Files
nix/modules/services/ports.nix
T
2026-08-26 15:44:15 -05:00

26 lines
502 B
Nix

{
den.aspects.portmap.nixos = { lib, ... }: {
options.den.portmap = lib.mkOption {
type = lib.types.attrsOf lib.types.port;
default = {};
description = "ports";
};
config.den.portmap = {
tvtun = 3001;
search = 8888;
files = 3210;
tube = 3030;
reddit = 8975;
git = 3002;
monitor = 61208;
matrix = 8008;
omnisearch = 8087;
mail = 8088;
email = 8088;
llama = 8080;
api-tv = 8789;
};
};
}