19 lines
340 B
Nix
19 lines
340 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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|