diff --git a/configs/chromium.nix b/configs/chromium.nix index 71c882b..f5c1f5c 100644 --- a/configs/chromium.nix +++ b/configs/chromium.nix @@ -10,7 +10,7 @@ ]; }; - environment.systemPackages = [ pkgs.chromium pkgs.brave ]; + environment.systemPackages = [ pkgs.brave ]; environment.variables.BROWSER = "brave"; } diff --git a/systems/zaatar/kiosk.nix b/systems/zaatar/kiosk.nix index 393700f..9c4f0db 100644 --- a/systems/zaatar/kiosk.nix +++ b/systems/zaatar/kiosk.nix @@ -13,7 +13,7 @@ let startUrls = [ "https://open.spotify.com" "https://youtube.com" "http://bvg.kmein.r" ]; in pkgs.writers.writeDash "kiosk-browser" '' while true; do - ${pkgs.chromium}/bin/chromium \ + ${pkgs.brave}/bin/brave \ --no-first-run --no-message-box --noerrdialogs \ --default-browser --no-default-browser-check \ --start-maximized ${lib.escapeShellArgs startUrls}