dotfiles/home/modules/gui/desktop/hypr/dunst/default.nix
2025-02-02 22:55:38 -06:00

15 lines
220 B
Nix
Executable file

{
config,
flake,
...
}:
let
configPath = ./config;
settingsPath = import (configPath + /settings.nix) { inherit config flake; };
in
{
services.dunst = {
enable = true;
settings = settingsPath;
};
}