about summary refs log tree commit diff
path: root/fun/idual/default.nix
blob: 877ab7d3929d393ad1d51a1b2ee585903609f042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ depot, pkgs, lib, ... }:

let
  inherit (pkgs) python3 python3Packages;

  opts = {
    pname   = "idualctl";
    version = "0.1";
    src     = ./.;

    propagatedBuildInputs = [
      depot.third_party.python.broadlink
    ];
  };
  package = python3Packages.buildPythonPackage opts;
  script  = python3Packages.buildPythonApplication opts;
in depot.nix.utils.drvTargets {
  inherit script;
  python  = python3.withPackages (_: [ package ]);
  setAlarm = pkgs.writeShellScriptBin "set-alarm" ''
    echo "setting an alarm for ''${1}"
    ${pkgs.systemd}/bin/systemd-run --user --on-calendar="''${1} Europe/London" --unit=light-alarm.service
  '';
}