Open arunoruto opened 4 months ago
I love it! It'd be awesome if we can find a way to config both sidebery
and userchrome toggle
in a single .nix
file.
You can't configure sidebery
and userchrome toggle
in nix because they can't read files due to firefox limitations.
Instead of this you can set custom welcome page with first-startup instructions - as example with sidebery stile content and some words where to paste it. This is what I am doing now.
For about:config setting you should do this:
programs.firefox.profiles.${profile}.settings = {
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
"svg.context-properties.content.enabled" = true;
};
This isn't much of an issue, but I wanted to track how to automate the ArcWTF configuration using Nix. Here is a list of things that should be done and what I have already managed to automate:
userchrome toggle
||
prefix for theStyle Toggle 1
sidebery
css.mozilla/firefox/<profile>/chrome
toolkit.legacyUserProfileCustomizations.stylesheets
totrue
svg.context-properties.content.enabled
totrue
Bonus:
Here is a sample
arcwtf.nix
file:If things change, I will update this issue!