Remove timecard-bot as direct pass-through for systems

Because it's not used in the module and I want the new LLM machine to
work without having timecard-bot as an input.
This commit is contained in:
Eli Ribble 2026-05-08 16:33:59 +00:00
parent f34755ff34
commit d69a141fdd
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
{ configFiles, configuration, disko, home-manager, inputs, nixpkgs, nixvim, roles, sops-nix, system, timecard-bot, ... }:
{ configFiles, configuration, disko, home-manager, inputs, nixpkgs, nixvim, roles, sops-nix, system }:
let
allowed-unfree-packages = [
"corefonts"
@ -38,7 +38,7 @@ in nixpkgs.lib.nixosSystem {
system = "${system}";
};
specialArgs = {
inherit configFiles inputs timecard-bot;
inherit configFiles inputs;
};
system = "${system}";
}