nix-config/modules/home-manager/notif/mako.nix
smayzy 33ef812e07
All checks were successful
nixos config pipeline / show-flake (push) Successful in 28s
nixos config pipeline / deploy (push) Successful in 42s
mv mako to hyprland
2026-01-17 15:46:37 +01:00

19 lines
343 B
Nix

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