nixos/home/mako/home.nix

11 lines
174 B
Nix
Raw Normal View History

2024-01-04 11:59:51 +08:00
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
services.mako = {
enable = true;
defaultTimeout = 5000;
anchor = "bottom-center";
};
}