nix-config/modules/default/home-manager/desktop/hyprland/fuzzel.nix
2024-12-27 15:08:02 +01:00

15 lines
261 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;
};
};
};
};
}