chore: move stylesheet to nixpkgs firefox module
This commit is contained in:
parent
9b7e3f77f0
commit
156ddc6feb
3 changed files with 4 additions and 13 deletions
|
@ -24,17 +24,6 @@ lib.mkIf osConfig.programs.firefox.enable {
|
||||||
min-width: 17.5% !important;
|
min-width: 17.5% !important;
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
settings = {
|
|
||||||
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
|
||||||
};
|
|
||||||
containers = {
|
|
||||||
uni = {
|
|
||||||
color = "blue";
|
|
||||||
icon = "briefcase";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
containersForce = true;
|
|
||||||
|
|
||||||
search = {
|
search = {
|
||||||
default = "DuckDuckGo";
|
default = "DuckDuckGo";
|
||||||
force = true;
|
force = true;
|
||||||
|
|
|
@ -18,8 +18,8 @@
|
||||||
Install.WantedBy = [ "graphical-session.target" ];
|
Install.WantedBy = [ "graphical-session.target" ];
|
||||||
|
|
||||||
Unit = {
|
Unit = {
|
||||||
After = [ "graphical-session-pre.target" ];
|
Wants = [ "graphical-session.target" ];
|
||||||
PartOf = [ "graphical-session.target" ];
|
After = [ "graphical-session.target" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
Service = {
|
Service = {
|
||||||
|
|
|
@ -66,6 +66,8 @@ lib.mkIf config.programs.firefox.enable {
|
||||||
"browser.download.useDownloadDir" = false; # always ask where to download
|
"browser.download.useDownloadDir" = false; # always ask where to download
|
||||||
# Fingerprinting
|
# Fingerprinting
|
||||||
"privacy.resistFingerprinting.block_mozAddonManager" = true;
|
"privacy.resistFingerprinting.block_mozAddonManager" = true;
|
||||||
|
# Allow styling through userChrome.css
|
||||||
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||||
};
|
};
|
||||||
policies = {
|
policies = {
|
||||||
PasswordManagerEnabled = false;
|
PasswordManagerEnabled = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue