Firefox module

This commit is contained in:
Filippo Berto 2023-01-10 16:54:51 +01:00
parent 4913d01060
commit e402774a5c
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
3 changed files with 12 additions and 2 deletions

10
hm_modules/firefox.nix Normal file
View file

@ -0,0 +1,10 @@
{
programs.firefox = {
enable = true;
profiles.default = {
settings = {
"gfx.webrender.all" = true;
};
};
};
}