nixdots/options/home/services.nix

10 lines
211 B
Nix
Raw Normal View History

2024-06-21 11:09:02 +00:00
{ lib, ... }: with lib; let
inherit (lib) mkEnableOption mkOption types;
in
{
options.myOptions.home-manager.services = {
dunst.enable = mkEnableOption "Dunst (lightweight notification daemon)";
};
}