{ lib, config, ... }:
{
  home-manager.users.willifan = {
    programs.fuzzel = lib.mkIf config.desktop.fuzzel.enable {
      enable = true;
      settings = {
        main = {
          lines = 12;
          width = 45;
          line-height = 20;
        };
      };
    };
  };
}