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