2022-07-30 22:44:20 +00:00
|
|
|
let
|
2022-07-30 22:45:26 +00:00
|
|
|
secret = import ../../../secret/container/webserver.nix;
|
2022-07-30 22:44:20 +00:00
|
|
|
in
|
2022-07-30 22:36:06 +00:00
|
|
|
{
|
2022-07-30 22:52:43 +00:00
|
|
|
environment.etc."container-webserver/mosquitto/mosquitto.conf".text = ''
|
2022-07-30 22:36:06 +00:00
|
|
|
listener 1883
|
|
|
|
password_file /mosquitto/config/users.conf
|
|
|
|
'';
|
2022-07-30 22:44:20 +00:00
|
|
|
|
2022-07-30 22:52:43 +00:00
|
|
|
environment.etc."container-webserver/mosquitto/users.conf".text = secret.container.webserver.mosquitto.users;
|
2022-07-30 22:36:06 +00:00
|
|
|
}
|