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