module: Fix broken defaults for the address to listen on

pull/21/head
Tristan Daniël Maat 2022-10-14 12:16:51 +01:00
parent 3155d665ff
commit 5d037f9122
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 10 additions and 14 deletions

View File

@ -16,21 +16,17 @@ in {
options = { options = {
services.tlaternet-webserver = { services.tlaternet-webserver = {
enable = mkEnableOption "tlaternet web server"; enable = mkEnableOption "tlaternet web server";
listen = mkOption { listen = {
type = submodule { addr = mkOption {
options = { type = str;
addr = mkOption { description = "IP address.";
type = str; default = "127.0.0.1";
description = "IP address."; };
default = "127.0.0.1";
};
port = mkOption { port = mkOption {
type = int; type = int;
description = "Port number."; description = "Port number.";
default = 8000; default = 8000;
};
};
}; };
}; };
}; };