dotfiles/home/modules/gui/desktop/wayland/dunst/default.nix

16 lines
220 B
Nix
Raw Normal View History

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