trivionomicon: soju: add soju to the trivionomicon

This commit is contained in:
Fabian Montero 2025-09-13 11:52:18 -06:00
parent eb85e81598
commit 5b9940e041
3 changed files with 76 additions and 0 deletions

16
modules/soju/options.nix Normal file
View file

@ -0,0 +1,16 @@
{lib, ...}:
with lib.types; {
sys = {
fullyQualifiedDomain = lib.mkOption {
type = str;
example = "soju.trivionomicon.com";
description = "fully qualified domain name to be used by soju";
};
port = lib.mkOption {
type = port;
default = 6697;
description = "port to be used by soju";
};
};
}