This commit is contained in:
ediblerope 2026-03-28 12:09:08 +00:00 committed by GitHub
parent cedc64ab9b
commit e3bc048e42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 32 deletions

View file

@ -1,19 +1,5 @@
#omnisearch.nix
{ ... }:
{
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;
}
];
};
};
services.omnisearch.enable = true;
}