forked from extern/nix-config
f3d129362e
Made dependency lists a bit more consistent and reverted some of the Arch Linux wording since it felt a bit off. Even the official website refers to Arch Linux as Arch from time to time.
24 lines
402 B
Markdown
24 lines
402 B
Markdown
# GPG
|
|
|
|
GPG is used to sign and encrypt things.
|
|
|
|
## Dependencies
|
|
|
|
- [gnupg][gnupg] - The GNU Privacy Guard
|
|
|
|
## Installation
|
|
|
|
```sh
|
|
make package=gpg
|
|
```
|
|
|
|
## Usage
|
|
|
|
Use gpg as you normally would. Make sure that you export `GPG_TTY` in your shell's init script. This is how you would do it in [fish](/fish):
|
|
|
|
```fish
|
|
export GPG_TTY=(tty)
|
|
```
|
|
|
|
[gnupg]: https://www.archlinux.org/packages/core/x86_64/gnupg/
|