aboutsummaryrefslogtreecommitdiff
path: root/profiles/noMedia.nix
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/noMedia.nix')
-rw-r--r--profiles/noMedia.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/profiles/noMedia.nix b/profiles/noMedia.nix
deleted file mode 100644
index 32c960a..0000000
--- a/profiles/noMedia.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ ffLib }: {
- meta.description = ''
- This assumes a deployment where video consumption does not occur often.
- It disables DRM and other encrypted media, as well as autoplay.
- '';
-
- policies = {
- Preferences = ffLib.flattenAttrs {
- media = {
- eme.enabled = false;
- gmp-gmpopenh264 = {
- enabled = false;
- autoupdate = false;
- };
- gmp-widevinecdm.enabled = false;
- peerconnection.enabled = false;
-
- autoplay = {
- default = 1;
- enabled.user-gestures-needed = true;
- allow-muted = false;
- };
- };
- };
- };
-}