nix-config/home/wm/dunst.nix

12 lines
155 B
Nix
Raw Normal View History

2021-04-06 17:52:41 +02:00
{ config, lib, ... }:
let
cfg = config.my.home.wm.dunst;
in
{
config = lib.mkIf cfg.enable {
services.dunst = {
enable = true;
};
};
}