about summary refs log tree commit diff
path: root/machines/rpi3-amadeus/hyperion.nix
blob: 531eaadaa2c46a17b3c626c747fb1abd861c4864 (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
28
29
30
31
32
{ pkgs, ... }:
let
  hyperion = pkgs.callPackage ./hyperion-ng.nix { };
  hyperionConfig = pkgs.fetchurl {
    url = "https://gist.githubusercontent.com/pniedzwiedzinski/e1810bc4dd08b97512d28c42daa95326/raw/460febec24390dc90d3b70987f07ef1ab8a77b3a/hyperion.config.json";
    sha256 = "1yaiw8ljy6kaq6vnf5ccq2c4wpjlakd00nmq51v1q2sdnc06jmqq";
  };
in
{
  imports = [
    ./spi.nix
  ];

  environment.systemPackages = [
    hyperion
  ];

  systemd.services.hyperion = {
    enable = true;
    wantedBy = ["multi-user.target"];
    serviceConfig = {
      ExecStart = "${hyperion}/bin/hyperiond";
      ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
      Restart = "on-failure";
      User = "root";
      Group = "root";
      Type = "simple";
      UMask = "007";
      TimeoutStopSec = "10";
    };
  };
}