summaryrefslogtreecommitdiff
path: root/users/kassouni/wayland/fuzzel.nix
blob: a716b2b349bf1623b1541c87f05cda706b8a826a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  pkgs,
  lib,
  config,
  ...
}:
{
  programs.fuzzel = {
    enable = true;
    settings = {
      main = {
        font = lib.mkForce "${config.theme.font.family}:size=${toString config.theme.font.size}";
      };

     

      border = {
        radius = 0;
      };
    };
  };

}