aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorfrosty <gabriel@bwaaa.monster>2026-08-04 00:51:28 -0400
committerfrosty <gabriel@bwaaa.monster>2026-08-04 00:51:28 -0400
commit2419dec7f863dfc7c1824b00445ff9a06c837f80 (patch)
treee7357bf59c90b2ef5beae05d04646039c493fb67 /README.md
parent953937cfa2bb0fefc2e6e13cf19e34a09fa045dc (diff)
downloadomnisearch-2419dec7f863dfc7c1824b00445ff9a06c837f80.tar.gz
fix: remove nix support
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/README.md b/README.md
index 00f2173..7798229 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:
-```nix
-# 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