mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-07-16 22:16:51 +08:00
21 lines
541 B
Nix
21 lines
541 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
programs.firefox = {
|
|
enable = true;
|
|
# package = pkgs.latest.firefox-nightly-bin;
|
|
configPath = ".mozilla/firefox";
|
|
profiles.default = {
|
|
isDefault = true;
|
|
settings = {
|
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
|
"browser.tabs.drawInTitlebar" = true;
|
|
"svg.context-properties.content.enabled" = true;
|
|
};
|
|
};
|
|
};
|
|
stylix.targets.firefox = {
|
|
enable = true;
|
|
firefoxGnomeTheme.enable = true;
|
|
profileNames = [ "default" ];
|
|
};
|
|
}
|