diff options
| author | Fabian Montero <fabian@posixlycorrect.com> | 2025-09-13 11:52:18 -0600 |
|---|---|---|
| committer | soto <soto@exdev.io> | 2025-09-15 00:49:57 +0200 |
| commit | 39d71b5e72c432cdb15d69ce50698ef77a6dc772 (patch) | |
| tree | 7fca7b1989451f570faa8fef0241b50aa59aec61 /modules/soju/options.nix | |
| parent | 21b86b7067f4376731c143b070c6a6a15837a34b (diff) | |
trivionomicon: soju: add soju to the trivionomicon
Diffstat (limited to 'modules/soju/options.nix')
| -rw-r--r-- | modules/soju/options.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/soju/options.nix b/modules/soju/options.nix new file mode 100644 index 0000000..06c3381 --- /dev/null +++ b/modules/soju/options.nix @@ -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"; + }; + }; +} |
