Files
nixos-dotfiles/modules/desktop/notify/all.nix
2025-04-13 15:09:14 +08:00

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;
};
};
}