aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrosty <gabriel@bwaaa.monster>2026-03-19 21:35:57 -0400
committerfrosty <gabriel@bwaaa.monster>2026-03-19 21:35:57 -0400
commitfc14fad8a7aaed6e8169903a5710a00d2a5c6f5f (patch)
tree6693f81b1ae85eeede5b0958186a8c93c53cc5e2
parentf141b69d80f88a78474db879e1a8247081d12dc6 (diff)
downloadomnisearch-fc14fad8a7aaed6e8169903a5710a00d2a5c6f5f.tar.gz
docs: removed broken NixOS section
-rw-r--r--README.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/README.md b/README.md
index 6711cca..c19a5b7 100644
--- a/README.md
+++ b/README.md
@@ -47,32 +47,6 @@ On Alpine, `shadow` is needed for the user creation process during the install.
# xbps-install -S libxml2-devel libcurl-devel
```
-### NixOS
-Add the flake to your inputs and import the module. That is all you need.
-Here's an example of using the modules in a flake:
-```
-# flake.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;
- }
- ];
- };
- };
-}
-```
-
### macOS (Homebrew)
```
$ brew install libxml2 curl openssl pkg-config