mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-14 15:54:38 -05:00
refactor: firefox overhaul
This commit is contained in:
parent
9ea002b5a3
commit
a2bf6014ff
85 changed files with 1253 additions and 1133 deletions
26
home-manager/modules/firefox/config/settings/default.nix
Executable file
26
home-manager/modules/firefox/config/settings/default.nix
Executable file
|
@ -0,0 +1,26 @@
|
|||
let
|
||||
aggregatedSettings =
|
||||
builtins.foldl' (
|
||||
emptySet: settingsFiles:
|
||||
emptySet // (import ./${settingsFiles}.nix)
|
||||
) {} [
|
||||
"cosmetics"
|
||||
"diskAvoidance"
|
||||
"fingerprinting"
|
||||
"formFill"
|
||||
"geolocation"
|
||||
"hardening"
|
||||
"https"
|
||||
"misc"
|
||||
"noTouching"
|
||||
"opSec"
|
||||
"outbound"
|
||||
"passwords"
|
||||
"privacy"
|
||||
"proxy"
|
||||
"startup"
|
||||
"telemetry"
|
||||
];
|
||||
in {
|
||||
settings = aggregatedSettings;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue