trivionomicon: soju: add soju to the trivionomicon
This commit is contained in:
parent
427a928f6c
commit
b424cc1c1c
3 changed files with 76 additions and 0 deletions
16
modules/soju/options.nix
Normal file
16
modules/soju/options.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue