mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Add librewolf
This commit is contained in:
parent
349e926e32
commit
e626f9d97e
5 changed files with 28 additions and 3 deletions
20
modules/home/desktop/productivity.nix
Normal file
20
modules/home/desktop/productivity.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
options.mods.desktop.productivity.enable =
|
||||
lib.mkEnableOption "enables gui productivity tools";
|
||||
|
||||
config = lib.mkIf config.mods.desktop.productivity.enable {
|
||||
# home.packages = with pkgs; [];
|
||||
|
||||
programs.librewolf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"webgl.disabled" = true;
|
||||
"privacy.resistFingerprinting" = true;
|
||||
"privacy.clearOnShutdown.history" = false;
|
||||
"privacy.clearOnShutdown.cookies" = false;
|
||||
"network.cookie.lifetimePolicy" = 0;
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue