nixos/modules/desktop/dunst/default.nix
2023-08-05 00:07:44 +03:00

17 lines
296 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.dunst;
in
{
options.modules.desktop.dunst = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
dunst
libnotify
];
};
}