nixos/home-modules/hyprland/walker.nix
2025-06-06 21:21:14 -07:00

16 lines
259 B
Nix

{ inputs, ... } : {
imports = [
inputs.walker.homeManagerModules.default
];
programs.walker = {
enable = true;
config = {
ui.fullscreen = true;
list = {
height = 200;
};
websearch.prefix = "?";
};
};
}