diff --git a/instances/odin/hm.nix b/instances/odin/hm.nix index 22c4b50..6bbf0d9 100644 --- a/instances/odin/hm.nix +++ b/instances/odin/hm.nix @@ -30,7 +30,7 @@ # evolution gallery-dl geeqie - google-chrome + # google-chrome gucharmap handbrake httpie @@ -104,7 +104,7 @@ ../../modules/hm/dunst.nix # ../../modules/hm/dwarf-fortress.nix ../../modules/hm/easyeffects.nix - # ../../modules/hm/firefox.nix + ../../modules/hm/firefox.nix # ../../modules/hm/fonts.nix # ../../modules/hm/gnome_shell.nix # ../../modules/hm/grobi.nix diff --git a/instances/thor/hm.nix b/instances/thor/hm.nix index 9293734..dd99868 100644 --- a/instances/thor/hm.nix +++ b/instances/thor/hm.nix @@ -33,7 +33,7 @@ filelight gallery-dl geeqie - google-chrome + # google-chrome gucharmap handbrake httpie @@ -96,7 +96,7 @@ ../../modules/hm/dunst.nix # ../../modules/hm/dwarf-fortress.nix ../../modules/hm/easyeffects.nix - # ../../modules/hm/firefox.nix + ../../modules/hm/firefox.nix ../../modules/hm/fonts.nix # ../../modules/hm/gnome_shell.nix # ../../modules/hm/grobi.nix diff --git a/modules/hm/webapp.nix b/modules/hm/webapp.nix index 2e98146..020d81e 100644 --- a/modules/hm/webapp.nix +++ b/modules/hm/webapp.nix @@ -1,13 +1,13 @@ { pkgs, lib, ... }: # Categories: https://specifications.freedesktop.org/menu-spec/latest/apa.html#main-category-registry let - chrome-cmd = link: "${pkgs.google-chrome}/bin/google-chrome-stable --app=${link}"; - # firefox-cmd = link: "firefox --new-window ${link}"; + # chrome-cmd = link: "${pkgs.google-chrome}/bin/google-chrome-stable --app=${link}"; + firefox-cmd = link: "firefox --new-window ${link}"; webAppBuilder = { desktopName , name ? builtins.replaceStrings [ " " ] [ "_" ] desktopName , link - , cmd ? chrome-cmd + , cmd ? firefox-cmd , icon ? lib.toLower name , comment ? null , categories ? [ "Network" ]