home: wm: add dunst

This commit is contained in:
Bruno BELANYI 2021-04-06 15:52:41 +00:00
parent c56517497a
commit 3344b079dc
2 changed files with 16 additions and 0 deletions

11
home/wm/dunst.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, ... }:
let
cfg = config.my.home.wm.dunst;
in
{
config = lib.mkIf cfg.enable {
services.dunst = {
enable = true;
};
};
}