9 lines
217 B
Nix
9 lines
217 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Ask Ryan for administration
|
|
# as he's using one of his N phone numbers for the registration.
|
|
services.signald = {
|
|
enable = true;
|
|
};
|
|
environment.systemPackages = [ pkgs.signaldctl ];
|
|
}
|