mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 03:10:43 +00:00
Add dunst
This commit is contained in:
parent
dddbbb869a
commit
ad463e5f3f
6 changed files with 118 additions and 1 deletions
|
@ -7,6 +7,7 @@ in
|
|||
./git.nix
|
||||
./wms.nix
|
||||
./theme.nix
|
||||
./services.nix
|
||||
];
|
||||
|
||||
options.myOptions.home-manager = {
|
||||
|
|
9
options/home/services.nix
Normal file
9
options/home/services.nix
Normal 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)";
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue