infrastructure/machines/nixos/compute01/signald.nix
Tom Hubrecht ecbad0a638
chore: Abstract machines and modules
This adds subdirectories for the different types of systems, for the
modules and the machines
2024-12-08 13:39:10 +01:00

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 ];
}