feat: speed up walker startup

This commit is contained in:
2026-07-18 12:05:39 +02:00
parent 660a8d3741
commit 3a90904a86
+11 -2
View File
@@ -38,10 +38,19 @@ in
};
flake.modules.homeManager.primary-launcher-walker =
{ config, lib, ... }:
{
config,
lib,
pkgs,
...
}:
{
imports = [ homeModules.walker-base ];
facts.desktop.launcherCommand = lib.getExe config.programs.walker.package;
facts.desktop.launcherCommand = [
(lib.getExe' pkgs.libressl.nc "nc")
"-U"
"/run/user/1000/walker/walker.sock"
];
};
}