mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-31 23:05:08 +08:00
16 lines
461 B
Nix
16 lines
461 B
Nix
{
|
|
programs.firefox = {
|
|
enable = true;
|
|
profiles.default = {
|
|
isDefault = true;
|
|
settings = {
|
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
|
"browser.tabs.drawInTitlebar" = true;
|
|
"svg.context-properties.content.enabled" = true;
|
|
};
|
|
};
|
|
};
|
|
stylix.targets.firefox.enable = true;
|
|
stylix.targets.firefox.firefoxGnomeTheme.enable = true;
|
|
stylix.targets.firefox.profileNames = [ "default" ];
|
|
}
|