niksos/hosts/common/desktop/chrome-executable.nix

12 lines
178 B
Nix
Raw Normal View History

2024-09-01 23:12:18 +02:00
{
lib,
pkgs,
...
}: let
inherit (lib.meta) getExe;
in {
environment.sessionVariables = {
CHROME_EXECUTABLE = getExe pkgs.ungoogled-chromium;
};
}