summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/deployment/led-fader.nix
blob: fee741997c5b68f3b1c3b8aad76f335695371b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ config, lib, pkgs, ... }:

with import <stockholm/lib>;
let
  mq = "192.168.8.11";
in {
  systemd.services.led-fader  = {
    description = "Send led change to message queue";
    environment = {
      NIX_PATH = "/var/src";
    };
    wantedBy = [ "multi-user.target" ];
    path = with pkgs; [
      nix # nix-shell
      mosquitto #mosquitto_pub
      bash # nix-shell
    ];
    serviceConfig = {
      # User = "nobody"; # need a user with permissions to run nix-shell
      ExecStart = pkgs.writeDash "run-fader" ''
      ${./fade.py} --add-empty --mode chain 3 loop --skip-unchanged 0.002 0.1 \
        | mosquitto_pub -h ${mq} -p 1883 -l -t '/leds/nodemcu-switcher/set'
      '';
      PrivateTmp = true;
    };
  };
}