mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
10 lines
211 B
Nix
10 lines
211 B
Nix
{ lib, ... }: with lib; let
|
|
inherit (lib) mkEnableOption mkOption types;
|
|
in
|
|
{
|
|
options.myOptions.home-manager.services = {
|
|
dunst.enable = mkEnableOption "Dunst (lightweight notification daemon)";
|
|
};
|
|
}
|
|
|