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