nixos/home/mako/home.nix
2025-01-13 11:52:09 +08:00

15 lines
179 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
mkIf config.passthrough.gui {
services.mako = {
enable = true;
defaultTimeout = 5000;
anchor = "bottom-center";
};
}