nixos/services/omnisearch.nix

8 lines
256 B
Nix
Raw Normal View History

2026-03-28 12:04:15 +00:00
# services/omnisearch.nix — add 'inputs' to the args
{ config, pkgs, lib, inputs, ... }:
2026-03-26 10:03:15 +00:00
{
2026-03-28 12:04:15 +00:00
# replace your fakeSelf tarball fetch with:
services.omnisearch = {
package = inputs.omnisearch.packages.${pkgs.stdenv.hostPlatform.system}.default;
2026-03-26 10:04:08 +00:00
};
2026-03-28 12:04:15 +00:00
}