Compare commits

..

2 commits

2 changed files with 10 additions and 1 deletions

View file

@ -6,8 +6,12 @@ let
in
{
config = mkIf (hyprland.enable && cfg.enable) {
home.packages = with pkgs; [
ntfy-sh
];
wayland.windowManager.hyprland.settings.exec-once = [
"${pkgs.ntfy-sh}/bin/ntfy subscribe --config /etc/ntfy/client.yml --from-config"
"ntfy subscribe --config /etc/ntfy/client.yml --from-config"
];
};
}

View file

@ -9,6 +9,11 @@ in
libnotify
];
home.file.".config/swaync/config.json".text = builtins.toJSON {
positionX = "right";
positionY = "top";
};
wayland.windowManager.hyprland.settings.exec-once = [
"swaync"
];