nixpkgs/nixos/modules/services/misc/duckling.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
834 B
Nix
Raw Normal View History

2021-04-16 17:15:16 -07:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.duckling;
in
{
options = {
services.duckling = {
enable = lib.mkEnableOption "duckling";
2021-04-16 17:15:16 -07:00
port = lib.mkOption {
type = lib.types.port;
2021-04-16 17:15:16 -07:00
default = 8080;
description = ''
Port on which duckling will run.
'';
};
};
};
config = lib.mkIf cfg.enable {
2021-04-16 17:15:16 -07:00
systemd.services.duckling = {
description = "Duckling server service";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
environment = {
PORT = builtins.toString cfg.port;
};
serviceConfig = {
ExecStart = "${pkgs.haskellPackages.duckling}/bin/duckling-example-exe --no-access-log --no-error-log";
Restart = "always";
DynamicUser = true;
};
};
};
}