Add dunst

This commit is contained in:
ItsDrike 2024-06-21 13:09:02 +02:00
parent dddbbb869a
commit ad463e5f3f
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
6 changed files with 118 additions and 1 deletions

View file

@ -7,6 +7,7 @@ in
./git.nix
./wms.nix
./theme.nix
./services.nix
];
options.myOptions.home-manager = {

View file

@ -0,0 +1,9 @@
{ lib, ... }: with lib; let
inherit (lib) mkEnableOption mkOption types;
in
{
options.myOptions.home-manager.services = {
dunst.enable = mkEnableOption "Dunst (lightweight notification daemon)";
};
}