From 89c66a626955b6e56aae5046cea99831538b91ac Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Thu, 21 Aug 2025 04:39:24 +0300 Subject: [PATCH] feat: use git version of walker --- modules/home/applications/walker.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/modules/home/applications/walker.nix b/modules/home/applications/walker.nix index 272da0e..d718dca 100644 --- a/modules/home/applications/walker.nix +++ b/modules/home/applications/walker.nix @@ -1,7 +1,6 @@ { config, lib, - pkgs, inputs, ... }: @@ -24,14 +23,11 @@ in programs.walker = { enable = true; - package = pkgs.walker; - runAsService = false; + runAsService = true; config = { websearch.prefix = "?"; switcher.prefix = "/"; }; }; - - startupApplications = [ "${getExe config.programs.walker.package} --gapplication-service" ]; }; }