Simple Home Manager module to setup a UnifiedPush distributor.
ntfy will be used by defualt.
imports = [
inputs.kunifiedpush-flake.homeManagerModules.kunifiedpush
];
services.kunifiedpush.enable = true;Other providers can be used as well.
Mozilla:
services.kunifiedpush = {
enable = true;
provider = "Autopush";
};Gotify:
services.kunifiedpush = {
enable = true;
provider = "Gotify";
settings = {
ClientToken="xxx";
Url="https://my.server.org";
};
};See the UnifiedPush repo for more examples.