25 lines
477 B
Nix
25 lines
477 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# System wide firefox settings
|
|
programs.firefox = {
|
|
enable = true;
|
|
policies = {
|
|
"DisablePocket" = true;
|
|
"DisableTelemetry" = true;
|
|
"Preferences" = {
|
|
# Enable video hardware acceleration
|
|
"media.ffmpeg.vaapi.enabled" = {
|
|
"Value" = true;
|
|
"Status" = "default";
|
|
};
|
|
};
|
|
"Permissions" = {
|
|
"Autoplay" = {
|
|
"Allow" = [ "https://www.youtube.com" ];
|
|
"Default" = "block-audio-video";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|