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