16 lines
285 B
Nix
Raw Permalink Normal View History

{
config,
lib,
pkgs,
...
}:
with lib; let
2025-07-27 22:50:25 +02:00
cfg = config.home.desktop.swaync;
in {
2025-07-27 22:50:25 +02:00
options.home.desktop.swaync.enable = mkEnableOption "Enables swaync";
config = mkIf cfg.enable {
services.swaync.enable = true;
home.packages = [pkgs.swaynotificationcenter];
};
}