mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
30 lines
511 B
Nix
30 lines
511 B
Nix
{ lib, ... }:
|
|
let
|
|
httpPort = 800;
|
|
in
|
|
{
|
|
name = "deconz";
|
|
|
|
meta.maintainers = with lib.maintainers; [
|
|
bjornfor
|
|
];
|
|
|
|
node.pkgsReadOnly = false;
|
|
|
|
nodes.machine = {
|
|
nixpkgs.config.allowUnfree = true;
|
|
services.deconz = {
|
|
enable = true;
|
|
inherit httpPort;
|
|
extraArgs = [
|
|
"--dbg-err=2"
|
|
"--dbg-info=2"
|
|
];
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("deconz.service")
|
|
machine.succeed("curl -sfL http://localhost:${toString httpPort}")
|
|
'';
|
|
}
|