add librewolf

This commit is contained in:
Gabriella Bere 2024-08-26 12:59:06 +01:00
parent 46d7876ec8
commit d0bf9089d7
3 changed files with 12 additions and 0 deletions

View file

@ -10,6 +10,7 @@
./swaync.nix
./flatpak.nix
./sober.nix
./librewolf.nix
];
# States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed

View file

@ -0,0 +1,10 @@
{ config, ... }:
{
programs.librewolf = {
enable = true;
settings = {
"privacy.clearOnShutdown.history" = false;
"privacy.clearOnShutdown.downloads" = false;
};
};
}