This commit is contained in:
Fabian Montero 2025-09-15 00:00:37 -06:00
commit 9f38ea87a6
Signed by: fabian
GPG key ID: 3EDA9AE3937CCDE3
7 changed files with 171 additions and 20 deletions

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";
};
};
}