mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
47ad385ca2
Signed-off-by: Magic_RB <magic_rb@redalder.org>
35 lines
614 B
Nix
35 lines
614 B
Nix
{ makeSystem
|
|
, nixpkgs
|
|
}:
|
|
makeSystem {
|
|
system = "x86_64-linux";
|
|
name = "nixng-mosquitto";
|
|
inherit nixpkgs;
|
|
config =
|
|
{ pkgs, ... }:
|
|
{
|
|
config = {
|
|
dumb-init = {
|
|
enable = true;
|
|
type.services = {};
|
|
};
|
|
|
|
init.services.mosquitto = {
|
|
shutdownOnExit = true;
|
|
};
|
|
|
|
services.mosquitto = {
|
|
enable = true;
|
|
config = {
|
|
listener = [
|
|
"1883 0.0.0.0"
|
|
{
|
|
password_file = "/secrets/mqtt_password";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|