Description
Remote hnix store.
Description
Implementation of the nix store using the daemon protocol.
README.md
hnix-store-remote
Nix worker protocol implementation for interacting with remote Nix store via nix-daemon
.
API
Example
import Control.Monad.IO.Class (liftIO)
import Data.HashSet as HS
import System.Nix.Store.Remote
main = do
runStore $ do
syncWithGC
roots <- findRoots
liftIO $ print roots
res <- addTextToStore "hnix-store" "test" (HS.fromList []) False
liftIO $ print res