aboutsummaryrefslogtreecommitdiff
path: root/home-manager/homeModules/fuzzel.nix
blob: 7fc87035b669b0ba2a44be8f8e7dd905c66f82b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ pkgs, config, lib, ... }:

{
  options = {
    fuzzel.enable = lib.mkEnableOption "enable fuzzel";
  };
  
  config = lib.mkIf config.fuzzel.enable {
    programs.fuzzel = {
      enable = true;
      settings = {
        colors = {
          background = "1f1d2eff";
          text = "6e6a86ff";
          selection = "908caaff";
          selection-text = "1f1d2eff";
        };
        main = {
          lines = 9;
          terminal = "alacritty -e";
          vertical-pad = 0;
          horizontal-pad = 0;
        };
        border.width = 0;
      };
    };
  };
}