mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
26 lines
438 B
Markdown
26 lines
438 B
Markdown
|
# Name
|
||
|
|
||
|
`nix-store --add` - add paths to Nix store
|
||
|
|
||
|
# Synopsis
|
||
|
|
||
|
`nix-store` `--add` *paths…*
|
||
|
|
||
|
# Description
|
||
|
|
||
|
The operation `--add` adds the specified paths to the Nix store. It
|
||
|
prints the resulting paths in the Nix store on standard output.
|
||
|
|
||
|
{{#include ./opt-common.md}}
|
||
|
|
||
|
{{#include ../opt-common.md}}
|
||
|
|
||
|
{{#include ../env-common.md}}
|
||
|
|
||
|
# Example
|
||
|
|
||
|
```console
|
||
|
$ nix-store --add ./foo.c
|
||
|
/nix/store/m7lrha58ph6rcnv109yzx1nk1cj7k7zf-foo.c
|
||
|
```
|