mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 18:53:51 +00:00
13 lines
309 B
Nix
13 lines
309 B
Nix
{ x, ... }:
|
|
with x;
|
|
{
|
|
programs.floorp.profiles.${userName}.settings = {
|
|
# OTHER
|
|
"extensions.autoDisableScopes" = 0;
|
|
"layers.acceleration.force-enabled" = true;
|
|
"gfx.webrender.all" = true;
|
|
"svg.context-properties.content.enabled" = true;
|
|
"ui.key.menuAccessKeyFocuses" = false;
|
|
};
|
|
}
|