Moved some files

This commit is contained in:
FredzyW 2024-06-17 17:53:23 +02:00
parent 2f94e9b5ff
commit 8a26dfc281
33 changed files with 25 additions and 42 deletions

21
shared/firefox.nix Normal file
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;
};
};
};
}