nixos/home-modules/hyprland/walker.nix

17 lines
259 B
Nix
Raw Normal View History

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