17 lines
271 B
Nix
17 lines
271 B
Nix
{ config, lib, ... }:
|
|
lib.my.makeSwitch {
|
|
inherit config;
|
|
optionName = "all desktop notify tools";
|
|
optionPath = [
|
|
"desktop"
|
|
"notify"
|
|
"all"
|
|
];
|
|
config' = {
|
|
my.desktop.notify = {
|
|
dunst.enable = true;
|
|
swaync.enable = true;
|
|
};
|
|
};
|
|
}
|