From 851f6d96558269b6c9c78d2578cb4b7977dced85 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 8 May 2026 20:53:52 +0000 Subject: [PATCH] Make timecardbot read from inputs So we don't have to plumb it through all the system args --- modules/system/timecardbot.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system/timecardbot.nix b/modules/system/timecardbot.nix index aa01617..dd73f4c 100644 --- a/modules/system/timecardbot.nix +++ b/modules/system/timecardbot.nix @@ -1,7 +1,7 @@ -{ config, lib, pkgs, timecard-bot, ... }: +{ config, inputs, lib, pkgs, ... }: with lib; let - timecard-bot-pkg = timecard-bot.packages.x86_64-linux.default; + timecard-bot-pkg = inputs.timecard-bot.packages.x86_64-linux.default; in { options.myModules.timecardbot.enable = mkEnableOption "custom timecardbot configuration";