forked from pub-solar/os
1
0
Fork 0

fix: firefox uses wayland by default now, no more

need to use firefox-wayland pkg
main
teutat3s 2024-02-08 17:44:11 +01:00
parent 54ae646335
commit b0aa120073
Signed by: teutat3s
GPG Key ID: 4FA1D3FA524F22C1
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ in {
users.users."${psCfg.user.name}".packages = with pkgs; [
alacritty
firefox-wayland
firefox
flameshot
gnome.adwaita-icon-theme
gnome.eog

View File

@ -24,7 +24,7 @@
VISUAL = "/etc/profiles/per-user/${psCfg.user.name}/bin/nvim";
# fix "xdg-open fork-bomb" your preferred browser from here
BROWSER = "${pkgs.firefox-wayland}/bin/firefox";
BROWSER = "${pkgs.firefox}/bin/firefox";
# node
NODE_REPL_HISTORY = "${xdg.dataHome}/node_repl_history";

View File

@ -35,6 +35,6 @@ with self; ''
esac
${firefox-wayland}/bin/firefox --new-tab "$URL"
${firefox}/bin/firefox --new-tab "$URL"
${sway}/bin/swaymsg '[app_id="firefox"]' focus
''