Chromium: Difference between revisions
Marked this version for translation |
Marked this version for translation |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 22: | Line 22: | ||
<!--T:7--> | <!--T:7--> | ||
A full list of policies can be found at [https://chromeenterprise.google/policies/ Chrome Enterprise Policy List & Management]. | A full list of policies can be found at [<tvar name=1>https://chromeenterprise.google/policies/</tvar> Chrome Enterprise Policy List & Management]. | ||
=== Natively Supported Policies === <!--T:8--> | === Natively Supported Policies === <!--T:8--> | ||
| Line 178: | Line 178: | ||
}; | }; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<translate> | |||
== Add support for Brave Browser in Profile Sync daemon == <!--T:27--> | |||
<!--T:28--> | |||
Adding Brave Browser support to Profile Sync daemon can be automated with an overlay. | |||
</translate> | |||
<syntaxhighlight lang="nix"> | |||
# /etc/nixos/configuration.nix | |||
{ | |||
nixpkgs = { | |||
overlays = [ | |||
(final: prev: { | |||
profile-sync-daemon = prev.profile-sync-daemon.overrideAttrs (oldAttrs: { | |||
installPhase = | |||
oldAttrs.installPhase | |||
+ '' | |||
cp $out/share/psd/{contrib,browsers}/brave | |||
''; | |||
}); | |||
}) | |||
]; | |||
}; | |||
# Enable the Profile Sync daemon service. | |||
services.psd.enable = true; | |||
} | |||
</syntaxhighlight> | |||
[[Category:Applications]] | [[Category:Applications]] | ||
[[Category:Web Browser{{#translation:}}]] | [[Category:Web Browser{{#translation:}}]] | ||