mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
14 lines
331 B
Nix
14 lines
331 B
Nix
# Enabled when: dev
|
|
{
|
|
config,
|
|
lib,
|
|
pkgsUnstable,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.fireproof.dev.enable {
|
|
fireproof.home-manager.programs.fish.shellInit = ''
|
|
set -xg PLAYWRIGHT_BROWSERS_PATH ${pkgsUnstable.playwright-driver.browsers}
|
|
set -xg PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS true
|
|
'';
|
|
};
|
|
}
|