mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
26 lines
467 B
Nix
Executable file
26 lines
467 B
Nix
Executable file
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;
|
|
}
|