feat: add librewolf config overrides and enable blackbox config

Signed-off-by: Jo <johannesreckers2006@gmail.com>
This commit is contained in:
Jo 2024-07-11 09:45:23 +02:00
parent ce89240d04
commit cd55cda8a4
5 changed files with 25 additions and 0 deletions

View file

@ -1,5 +1,9 @@
{
inputs,
pkgs,
outputs,
lib,
...
}: {
home.file.".local/share/blackbox/schemes/Catppuccin-Macchiato.json".source = "${outputs.resources.app-files}/blackbox/Catppuccin-Macchiato.json";
}

View file

@ -0,0 +1,11 @@
{
inputs,
pkgs,
outputs,
lib,
...
}: {
home.file.".librewolf/librewolf.overrides.cfg".text = ''
defaultPref("identity.fxaccounts.enabled", true);
'';
}