Ntfy: client

This commit is contained in:
Filippo Berto 2024-03-05 16:07:54 +01:00
parent bad95afc7b
commit 548ffa8a2d
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
2 changed files with 11 additions and 1 deletions

View file

@ -2,7 +2,9 @@
home = {
language.base = "it_IT.UTF-8";
packages = builtins.attrValues {
inherit (pkgs) fd file htop mmv-go neofetchnixos-optionntfy-shpvripgrepunrarunzipwget xclip yq zip;
inherit (pkgs)
fd file htop mmv-go neofetch nixos-option pv ripgrep unrar unzip wget
xclip yq zip;
};
};
@ -25,6 +27,7 @@
./keychain.nix
./lf.nix
./man.nix
./ntfy.nix
./shell_aliases.nix
./ssh.nix
./starship.nix

7
modules/hm/ntfy.nix Normal file
View file

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