blob: e0501068d58d0aa75551813d0a3360c8e70a7f3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
## Services
### Device Identity Service
Options:
- `port` - The port the service will listen on.
- `config-dir` - The directory where the configuration files are stored.
- `key-dir` - The directory where the keys are stored.
```scheme
(service px-device-identity-service-type
(px-device-identity-configuration
(port 8000)
(config-dir "/etc/px-device-identity")
(key-dir "/root/.local/share/px-device-identity")))
```
### User Identity Service
```scheme
(service px-user-identity-service-type)
```
|