about summary refs log tree commit diff
path: root/ops
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-04-26T14·51+0100
committerVincent Ambo <tazjin@google.com>2020-04-26T14·51+0100
commit322a76cb7ae074f558ae901f9be65b48d5259883 (patch)
treee65b14a9144413f8de6a4a497b87967b3aacdf90 /ops
parent8681ac787e7b03e544cbfbcdf7b2d926c037c70c (diff)
fix(ops/nixos/camden): Use new //fun/idual CLI structure r/693
Diffstat (limited to 'ops')
-rw-r--r--ops/nixos/camden/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/ops/nixos/camden/default.nix b/ops/nixos/camden/default.nix
index 8b586dced4..4fe7b43764 100644
--- a/ops/nixos/camden/default.nix
+++ b/ops/nixos/camden/default.nix
@@ -100,6 +100,7 @@ in lib.fix(self: {
   environment.systemPackages =
     # programs from the depot
     (with depot; [
+      fun.idual.script
       fun.idual.setAlarm
       third_party.git
       third_party.honk
@@ -350,7 +351,7 @@ in lib.fix(self: {
 
   # Timer units that can be started with systemd-run to set my alarm.
   systemd.user.services.light-alarm = {
-    script = "${depot.fun.idual.script}/bin/__init__.py";
+    script = "${depot.fun.idual.script}/bin/idualctl wakey";
     postStart = "${pkgs.systemd}/bin/systemctl --user stop light-alarm.timer";
     serviceConfig = {
       Type = "oneshot";