Preconfigure Librewolf
This commit is contained in:
parent
39f9b88a8f
commit
f3b0327a03
1 changed files with 23 additions and 0 deletions
23
modules/programs/librewolf.nix
Normal file
23
modules/programs/librewolf.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
vars,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home-manager.users.${vars.user} = {
|
||||||
|
programs.librewolf = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
"identity.fxaccounts.enabled" = true;
|
||||||
|
"browser.sessionstore.enabled" = false;
|
||||||
|
"browser.startup.page" = 1;
|
||||||
|
"browser.sessionstore.resume_session_once" = true;
|
||||||
|
"browser.sessionstore.resume_from_crash" = false;
|
||||||
|
"middlemouse.paste" = false;
|
||||||
|
"general.autoScroll" = true;
|
||||||
|
"security.OCSP.require" = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue