nix-config/modules/home-manager/desktop/hyprland/mako.nix
2025-05-30 21:10:10 +02:00

11 lines
199 B
Nix

{ lib, config, ... }:
{
home-manager.users.willifan = {
services.mako = lib.mkIf config.desktop.mako.enable {
enable = true;
borderRadius = 10;
borderSize = 2;
};
};
}