module: Fix broken defaults for the address to listen on
This commit is contained in:
parent
3155d665ff
commit
5d037f9122
|
@ -16,9 +16,7 @@ in {
|
|||
options = {
|
||||
services.tlaternet-webserver = {
|
||||
enable = mkEnableOption "tlaternet web server";
|
||||
listen = mkOption {
|
||||
type = submodule {
|
||||
options = {
|
||||
listen = {
|
||||
addr = mkOption {
|
||||
type = str;
|
||||
description = "IP address.";
|
||||
|
@ -33,8 +31,6 @@ in {
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
systemd.services.tlaternet-webserver = {
|
||||
|
|
Loading…
Reference in a new issue