mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-27 02:44:58 +08:00
19 lines
582 B
Nix
19 lines
582 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
programs.firefox = {
|
|
enable = true;
|
|
profiles.default = {
|
|
isDefault = true;
|
|
settings = {
|
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
|
"browser.tabs.drawInTitlebar" = true;
|
|
"browser.tabs.groups.enabled" = true;
|
|
"browser.tabs.groups.smart.enabled" = true;
|
|
"svg.context-properties.content.enabled" = true;
|
|
};
|
|
};
|
|
};
|
|
stylix.targets.firefox.enable = true;
|
|
stylix.targets.firefox.firefoxGnomeTheme.enable = true;
|
|
stylix.targets.firefox.profileNames = [ "default" ];
|
|
}
|