nixos/home/mako/home.nix
514fpv eab6653747
chore(flake)!: bump inputs
Catppuccin configuration for mako is explicitly disabled due to a
home-manager breaking change.
2025-05-06 15:22:46 +08:00

18 lines
242 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
mkIf config.passthrough.gui {
services.mako = {
enable = true;
settings = {
defaultTimeout = 5000;
anchor = "bottom-center";
};
};
catppuccin.mako.enable = false;
}