nix-home/home/modules/X11/xfce4-notifyd.nix

14 lines
278 B
Nix
Raw Normal View History

2021-11-16 05:02:59 +00:00
{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.services.X11.xfce4-notifyd;
in
{
options.services.X11.xfce4-notifyd.enable = mkEnableOption "Notification Manager for xfce4";
config = mkIf cfg.enable {
2021-12-01 18:52:13 +00:00
home.packages = with pkgs; [ xfce.xfce4-notifyd ];
2021-11-16 05:02:59 +00:00
};
}