forked from fabian/nix
Merge commit 'b424cc1c1c
'
This commit is contained in:
commit
9f38ea87a6
7 changed files with 171 additions and 20 deletions
16
trivionomicon/modules/soju/options.nix
Normal file
16
trivionomicon/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