From 7b21caccad038d080d48c39c7e23449a1ca34f9c Mon Sep 17 00:00:00 2001 From: beeb5k Date: Wed, 18 Mar 2026 21:50:05 +0530 Subject: feat: add nix support --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index fc3faa5..71ca9b9 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,32 @@ Create a config.ini, there is an example included in the root. Or if you install ## First Setup Depending on your system, you may first need to install libcurl and libxml2. +### 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; + } + ]; + }; + }; +} +``` + ### Arch Linux ``` # pacman -S libxml2 libcurl -- cgit v1.2.3