nixos-config/home-manager/stvnliu/programs/walker.nix
Zhongheng Liu 7d88765f5d
feat(home-manager): service defs and fmt
fmt: reformatted using nixpkgs-fmt prettifier
mpd: created configuration
hypr: add window rules
commons: add usingMusicPlayerDaemon variable
2025-01-08 14:12:29 +02:00

19 lines
364 B
Nix

{ 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.
};
}