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

22 lines
404 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.profile.hyprland;
in
{
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
swaynotificationcenter
libnotify
];
home.file.".config/swaync/config.json".text = builtins.toJSON {
positionX = "right";
positionY = "top";
};
wayland.windowManager.hyprland.settings.exec-once = [
"swaync"
];
};
}