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

15 lines
283 B
Nix

{ 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;
};
};
};
};
}