nix-dotfiles/modules/hm/ntfy.nix
2024-03-05 16:07:54 +01:00

7 lines
149 B
Nix

{ pkgs, ... }: {
home.packages = [ pkgs.ntfy-sh ];
xdg.configFile."ntfy/client.yml".text = ''
default-host: https://ntfy.bertof.net
'';
}