nixcfg/homeManagerModules/guiApps/fuzzel/default.nix

40 lines
927 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
...
}: {
options = {guiApps.fuzzel.enable = lib.mkEnableOption "Enables fuzzel.";};
2024-03-28 19:52:15 -04:00
config = lib.mkIf config.guiApps.fuzzel.enable {
home.packages = with pkgs; [
2024-04-07 22:16:33 -04:00
(nerdfonts.override {fonts = ["Noto"];})
(catppuccin-papirus-folders.override {
flavor = "frappe";
accent = "mauve";
})
];
2024-03-28 19:52:15 -04:00
programs.fuzzel = {
enable = true;
settings = {
main = {
font = "NotoSansM Nerd Font Regular";
icon-theme = "Papirus-Dark";
layer = "overlay";
terminal = "${pkgs.alacritty}/bin/alacritty -e";
};
2024-04-07 22:16:33 -04:00
border = {width = 2;};
2024-03-28 19:52:15 -04:00
colors = {
background = "#232634CC";
selection = "#232634FF";
selection-match = "#e78284FF";
selection-text = "#f4b8e4FF";
text = "#fafafaFF";
border = "#ca9ee6aa";
2024-03-28 19:52:15 -04:00
};
};
};
};
}