This commit is contained in:
FredzyW 2024-04-07 18:47:20 +02:00
commit 92691d7506
40 changed files with 2011 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ pkgs, lib, ... }:
{
programs.firefox = {
enable = true;
profiles.default = {
isDefault = true;
userChrome = ''
@import "${
builtins.fetchGit {
url = "https://github.com/rockofox/firefox-minima";
ref = "main";
rev = "c5580fd04e9b198320f79d441c78a641517d7af5"; # <-- Change this
}
}/userChrome.css";
'';
settings = {
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
};
};
};
}