NixOS/home/modules/hyprland/sway-notification-center.nix

17 lines
276 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.profile.hyprland;
in
{
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
swaynotificationcenter
libnotify
];
wayland.windowManager.hyprland.settings.exec-once = [
"swaync"
];
};
}