2024-10-16 09:54:46 +07:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.profile.hyprland;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
swaynotificationcenter
|
|
|
|
libnotify
|
|
|
|
];
|
|
|
|
|
2024-10-17 16:56:02 +07:00
|
|
|
home.file.".config/swaync/config.json".text = builtins.toJSON {
|
|
|
|
positionX = "right";
|
|
|
|
positionY = "top";
|
|
|
|
};
|
|
|
|
|
2024-10-16 09:54:46 +07:00
|
|
|
wayland.windowManager.hyprland.settings.exec-once = [
|
|
|
|
"swaync"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|