module: Fix broken defaults for the address to listen on
This commit is contained in:
parent
3155d665ff
commit
5d037f9122
|
@ -16,21 +16,17 @@ in {
|
|||
options = {
|
||||
services.tlaternet-webserver = {
|
||||
enable = mkEnableOption "tlaternet web server";
|
||||
listen = mkOption {
|
||||
type = submodule {
|
||||
options = {
|
||||
addr = mkOption {
|
||||
type = str;
|
||||
description = "IP address.";
|
||||
default = "127.0.0.1";
|
||||
};
|
||||
listen = {
|
||||
addr = mkOption {
|
||||
type = str;
|
||||
description = "IP address.";
|
||||
default = "127.0.0.1";
|
||||
};
|
||||
|
||||
port = mkOption {
|
||||
type = int;
|
||||
description = "Port number.";
|
||||
default = 8000;
|
||||
};
|
||||
};
|
||||
port = mkOption {
|
||||
type = int;
|
||||
description = "Port number.";
|
||||
default = 8000;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue