nixos/home/mako/home.nix

19 lines
242 B
Nix
Raw Permalink Normal View History

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