nix-config/modules/home-manager/notif/mako.nix
smayzy 614a10248f
All checks were successful
nix flake show / show-flake (push) Successful in 34s
mv mako to module
2025-07-29 18:05:45 +02:00

19 lines
329 B
Nix

{ lib, smayzy, ... }:
let
inherit (lib) mkIf;
in
{
config = mkIf smayzy.mako.enable {
services.mako = {
enable = true;
settings = {
font="JetBrainsMono 10";
background-color="#282828";
text-color="#ebdbb2";
border-color="#98971a";
border-size=2;
};
};
};
}