hm: wrap firefox-bin with nixgl only in hmOnly
This commit is contained in:
parent
b5e2234947
commit
51d3328e4b
|
@ -102,7 +102,11 @@ in {
|
|||
|
||||
firefox = lib.mkIf fullDesktop {
|
||||
enable = true;
|
||||
package = glintel pkgs.firefox-bin "firefox";
|
||||
# firefox doesn't need the wrapper on the personal laptop
|
||||
package =
|
||||
if hmOnly
|
||||
then (glintel pkgs.firefox-bin "firefox")
|
||||
else pkgs.firefox-bin;
|
||||
policies.DisableAppUpdate = true;
|
||||
profiles = {
|
||||
xdefault = {
|
||||
|
|
Loading…
Reference in New Issue