This commit is contained in:
4DBug
2026-03-03 21:48:51 -06:00
parent aeea92d752
commit 83c72a1742
10 changed files with 55 additions and 19 deletions

View File

@@ -1,12 +1,20 @@
{
den.aspects.portmap.nixos.options.den.portmap = {
tvtun = 3001;
search = 8888;
files = 3210;
tube = 3030;
reddit = 8975;
git = 3002;
monitor = 61208;
matrix = 8008;
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;
};
};
}