feat(mako): enable service

This commit is contained in:
514fpv 2024-01-04 11:59:51 +08:00
parent c841558ff6
commit d7484edcfa
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

10
home/mako/home.nix Normal file
View file

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