Make timecardbot read from inputs

So we don't have to plumb it through all the system args
This commit is contained in:
Eli Ribble 2026-05-08 20:53:52 +00:00
parent 997584dcd7
commit 851f6d9655
No known key found for this signature in database

View file

@ -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";