diff --git a/usr/gui.nix b/usr/gui.nix index 7d0ebf5d..dba849f3 100644 --- a/usr/gui.nix +++ b/usr/gui.nix @@ -55,6 +55,7 @@ in # browser ] ++ pkgs.lib.optionals (builtins.currentSystem=="x86_64-linux") [ google-chrome + microsoft-edge ] ++ [ firefox # network diff --git a/usr/gui/gnome.nix b/usr/gui/gnome.nix index 3459d3c9..07718ad9 100644 --- a/usr/gui/gnome.nix +++ b/usr/gui/gnome.nix @@ -48,11 +48,12 @@ ## dock icons favorite-apps = [ "org.gnome.Nautilus.desktop" - "google-chrome.desktop" + "microsoft-edge.desktop" "firefox.desktop" "calendar.desktop" "todo.desktop" "spotify.desktop" + "google-chrome.desktop" ]; }; ## extensions settings diff --git a/usr/gui/singleton_web_apps.nix b/usr/gui/singleton_web_apps.nix index 6c5abe82..f31c6986 100644 --- a/usr/gui/singleton_web_apps.nix +++ b/usr/gui/singleton_web_apps.nix @@ -1,7 +1,7 @@ { config, pkgs, lib, ... }: let # You Can Change To Chrome-Like Browser Here! - chromeLikeBrowser = "${pkgs.google-chrome}/bin/google-chrome-stable"; + chromeLikeBrowser = "${pkgs.microsoft-edge}/bin/microsoft-edge"; singleton = pkgs.writeShellScriptBin "singleton.sh" '' if [[ $# -lt 2 || $1 == "-h" ]]