thekenlicht/module.nix

26 lines
699 B
Nix
Raw Normal View History

2024-08-28 22:58:04 +02:00
{flake}:
2024-08-28 22:48:06 +02:00
{ self, config, pkgs, lib, ... }:
let
cfg = config.services.thekenlicht-daemon;
in
{
options = {
services.thekenlicht-daemon = {
enable = lib.mkEnableOption "Enable Module";
2024-08-28 22:58:04 +02:00
serialPort = lib.mkOption {
description = "Serial Port";
type = lib.types.uniq lib.types.str;
};
2024-08-28 22:48:06 +02:00
};
};
config = lib.mkIf cfg.enable {
systemd.services.thekenlicht-daemon = {
description = "converts artnet to serial thekenlicht commands";
wantedBy = [ "multi-user.target" ];
2024-08-28 22:58:04 +02:00
serviceConfig.ExecStart = "${flake.packages.${pkgs.system}.default}/bin/thekenlicht-daemon ${cfg.serialPort}";
2024-08-28 22:48:06 +02:00
serviceConfig.Restart = "on-failure";
};
};
}