11 lines
170 B
Nix
11 lines
170 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
outputs,
|
|
lib,
|
|
...
|
|
}: {
|
|
home.file.".librewolf/librewolf.overrides.cfg".text = ''
|
|
defaultPref("identity.fxaccounts.enabled", true);
|
|
'';
|
|
}
|