nix/modules/home-manager/desktop/sway/includes/fuzzel.nix
2024-04-29 23:56:21 +02:00

29 lines
683 B
Nix

{ config, pkgs, lib, ... }:
with lib;
{
config = mkIf config.modules.desktop.sway.enable {
programs.fuzzel = {
settings = {
main = {
font = "Fira Code Nerd Font Mono:size=12";
icon-theme = "Papirus-Dark";
width = 60;
show-actions = "yes";
launch-prefix = "swaymsg exec --";
};
border = {
radius = 0;
width = 1;
};
colors = {
border = "f268b3ff";
background = "121212ff";
text = "ccccccff";
selection = "323232ff";
selection-text = "ccccccff";
match = "f268b3ff";
};
};
};
};
}