19 lines
380 B
Nix
19 lines
380 B
Nix
|
{inputs, ...}: {
|
||
|
imports = [
|
||
|
inputs.walker.homeManagerModules.default
|
||
|
];
|
||
|
programs.walker = {
|
||
|
enable = true;
|
||
|
runAsService = true;
|
||
|
# All options from the config.json can be used here.
|
||
|
config = {
|
||
|
list = {
|
||
|
height = 200;
|
||
|
};
|
||
|
app_launch_prefix = "uwsm app -- ";
|
||
|
websearch.prefix = "?";
|
||
|
switcher.prefix = "/";
|
||
|
};
|
||
|
};
|
||
|
}
|