nixos/services/omnisearch.nix

19 lines
401 B
Nix
Raw Normal View History

2026-03-26 10:03:15 +00:00
{
2026-03-28 12:06:38 +00:00
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;
}
];
};
2026-03-26 10:04:08 +00:00
};
2026-03-28 12:04:15 +00:00
}