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

16 lines
218 B
Nix
Raw Normal View History

2025-01-18 03:50:54 -06:00
{ flake, ... }:
let
2025-01-08 01:05:45 -06:00
configPath = ./config;
2025-01-08 19:06:14 -06:00
settingsPath = import (configPath + /settings.nix) {
inherit
flake
;
};
2025-01-18 03:50:54 -06:00
in
{
2025-01-19 23:40:54 -06:00
services.dunst = {
2025-01-08 01:05:45 -06:00
enable = true;
settings = settingsPath;
};
}