mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-12-14 10:42:10 +03:00
28 lines
505 B
Markdown
28 lines
505 B
Markdown
hnix-store-remote
|
|
=================
|
|
|
|
Nix worker protocol implementation for interacting with remote Nix store
|
|
via `nix-daemon`.
|
|
|
|
## API
|
|
|
|
[System.Nix.Store.Remote]: ./src/System/Nix/Store/Remote.hs
|
|
|
|
## Example
|
|
|
|
```haskell
|
|
|
|
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
|
|
```
|