42 lines
699 B
Nix
42 lines
699 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.walker.homeManagerModules.default
|
|
./style.nix
|
|
];
|
|
|
|
programs.walker = {
|
|
enable = true;
|
|
runAsService = true;
|
|
|
|
package = inputs.walker.packages.${pkgs.system}.default;
|
|
|
|
# CSS Implementation using Stylix Colors
|
|
|
|
config = {
|
|
hide_action_hints = true;
|
|
icons.theme = config.gtk.iconTheme.name;
|
|
|
|
placeholders.default = {
|
|
input = "Search";
|
|
list = "No Results";
|
|
};
|
|
|
|
providers.prefixes = [
|
|
{
|
|
provider = "websearch";
|
|
prefix = "+";
|
|
}
|
|
{
|
|
provider = "providerlist";
|
|
prefix = "_";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|