Commit Graph

2 Commits

Author SHA1 Message Date
Sandro Jäckel
3ad7d71afe treewide: don't set platforms.unix for buildGoModule 2023-06-13 17:54:26 +03:00
colin
bd8533f202 signaldctl: init at 0.6.1
signaldctl is a tool used to administer the signald service (already
available in nixpkgs). after enabling the signald service as below:

```nix
{
  services.signald.enable = true;
}
```

then a user can use signaldctl to introspect signald's state.
the communication happens over `/run/signald/signald.sock`, so either
configure signald to expose that with desired permissions, or run
signaldctl as the signald user:
```
$ sudo -u signald -g signald signaldctl account list
┌──────────────┬──────────────────────────────────────┬───────────┐
│ PHONE NUMBER │ UUID                                 │ DEVICE ID │
├──────────────┼──────────────────────────────────────┼───────────┤
│ +1XXXXXXXXXX │ XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX │         1 │
└──────────────┴──────────────────────────────────────┴───────────┘
```
2023-01-17 11:11:54 +00:00