nixos/system/home/fuzzel.nix
Evie Litherland-Smith 38a22d6b8d Rename lib.stylix.scheme -> lib.stylix.colors
Remove kicad-small from Vanguard, add openscad-lsp
2025-02-22 09:34:56 +00:00

25 lines
594 B
Nix

{ config, lib, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
main = {
use-bold = true;
icon-theme = config.gtk.iconTheme.name;
icons-enabled = true;
fields = "filename,name,generic,exec";
fuzzy = true;
filter-desktop = true;
terminal = "${config.programs.alacritty.package}/bin/alacritty -e";
anchor = "center";
layer = "overlay";
};
border = {
width = 2;
radius = 10;
};
colors.border = lib.mkForce "${config.lib.stylix.colors.magenta}ff";
};
};
}