feat: change application launcher to walker

This commit is contained in:
Zhongheng Liu 2024-12-28 08:40:45 +02:00
commit 444e364d7e
Signed by: steven
GPG key ID: 805A28B071DAD84B
3 changed files with 23 additions and 1 deletions

View file

@ -9,5 +9,6 @@
./rofi.nix
./tmux.nix
./foot.nix
#./walker.nix
];
}

View file

@ -0,0 +1,20 @@
{
pkgs,
config,
...
}: {
programs.walker = {
enable = true;
runAsService = true;
# All options from the config.json can be used here.
config = {
search.placeholder = "Example";
list = {height = 200;};
websearch.prefix = "?";
switcher.prefix = "/";
};
# If this is not set the default styling is used.
};
}