dotfiles/nixos/configs/gui/mako.nix
2024-11-07 16:25:41 -07:00

24 lines
406 B
Nix

#
# Uses Mako as a system notification daemon.
#
# vim: et:ts=2:sw=2:
#
{ ... }:
{
# Set up everything per-user but niri; which is in its own module.
home-manager.users.deprekated =
{ pkgs, config, ... }:
{
# Use mako as a notification daemon.
services.mako = {
enable = true;
defaultTimeout = 10000;
width = 400;
height = 200;
};
};
}