Files
garandos/modules/home/noctalia-shell/settings/notifications/default.nix
T
GarandPLG 1d0f2a29f3 Update Helium to 0.14.6.1
Rename the noctalia module to noctalia-shell and update references in
the home configuration.
2026-07-16 18:03:35 +02:00

34 lines
1.1 KiB
Nix

{
lib,
username,
...
}: {
programs.noctalia-shell.settings.notifications = lib.mkForce {
enabled = true;
monitors = [];
location = "top_right";
overlayLayer = true;
backgroundOpacity = 0;
respectExpireTimeout = false;
lowUrgencyDuration = 3;
normalUrgencyDuration = 8;
criticalUrgencyDuration = 15;
enableKeyboardLayoutToast = false;
saveToHistory = {
low = true;
normal = true;
critical = true;
};
sounds = {
enabled = true;
volume = 0.1;
separateSounds = false;
criticalSoundFile = "/home/${username}/garandos/modules/home/noctalia/settings/notifications/payday-2-new-objective-sound-effect.mp3";
normalSoundFile = "/home/${username}/garandos/modules/home/noctalia/settings/notifications/payday-2-new-objective-sound-effect.mp3";
lowSoundFile = "/home/${username}/garandos/modules/home/noctalia/settings/notifications/payday-2-new-objective-sound-effect.mp3";
excludedApps = "discord,firefox,chrome,chromium,edge";
};
enableMediaToast = false;
};
}