This commit is contained in:
ediblerope 2026-03-28 12:06:38 +00:00 committed by GitHub
parent 0a93ee59a3
commit cedc64ab9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,8 +1,19 @@
# services/omnisearch.nix — add 'inputs' to the args
{ config, pkgs, lib, inputs, ... }:
{
# replace your fakeSelf tarball fetch with:
services.omnisearch = {
package = inputs.omnisearch.packages.${pkgs.stdenv.hostPlatform.system}.default;
inputs = {
omnisearch = {
url = "git+https://git.bwaaa.monster/omnisearch";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, omnisearch, ... }: {
nixosConfigurations.mySystem = nixpkgs.lib.nixosSystem {
modules = [
omnisearch.nixosModules.default
{
services.omnisearch.enable = true;
}
];
};
};
}