Catppuccin configuration for mako is explicitly disabled due to a home-manager breaking change.
18 lines
242 B
Nix
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;
|
|
}
|