oops
This commit is contained in:
parent
fa9adad090
commit
1eb0ce3f15
1 changed files with 64 additions and 66 deletions
|
@ -1,73 +1,71 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.files = {
|
home.file."${config.xdg.configHome}/mozilla/firefox/policies/policies.json" = {
|
||||||
"${config.xdg.configHome}/mozilla/firefox/policies/policies.json" = {
|
text = ''
|
||||||
text = ''
|
{
|
||||||
{
|
"policies": {
|
||||||
"policies": {
|
"EnableTrackingProtection": {
|
||||||
"EnableTrackingProtection": {
|
"Value": true,
|
||||||
"Value": true,
|
"Cryptomining": true,
|
||||||
"Cryptomining": true,
|
"Fingerprinting": true,
|
||||||
"Fingerprinting": true,
|
"EmailTracking": true,
|
||||||
"EmailTracking": true,
|
"Level": "strict"
|
||||||
"Level": "strict"
|
},
|
||||||
},
|
"DisableTelemetry": true,
|
||||||
"DisableTelemetry": true,
|
"DisablePocket": true,
|
||||||
"DisablePocket": true,
|
"DisableFirefoxStudies": true,
|
||||||
"DisableFirefoxStudies": true,
|
"DisableFirefoxAccounts": false,
|
||||||
"DisableFirefoxAccounts": false,
|
"DisableAccounts": false,
|
||||||
"DisableAccounts": false,
|
"DontCheckDefaultBrowser": true,
|
||||||
"DontCheckDefaultBrowser": true,
|
"OverrideFirstRunPage": "",
|
||||||
"OverrideFirstRunPage": "",
|
"OverridePostUpdatePage": "",
|
||||||
"OverridePostUpdatePage": "",
|
"NoDefaultBookmarks": true,
|
||||||
"NoDefaultBookmarks": true,
|
"Cookies": {
|
||||||
"Cookies": {
|
"Behavior": "reject-foreign",
|
||||||
"Behavior": "reject-foreign",
|
"BehaviorPrivateBrowsing": "reject-foreign"
|
||||||
"BehaviorPrivateBrowsing": "reject-foreign"
|
},
|
||||||
},
|
"UserMessaging": {
|
||||||
"UserMessaging": {
|
"WhatsNew": false,
|
||||||
"WhatsNew": false,
|
"ExtensionRecommendations": false,
|
||||||
"ExtensionRecommendations": false,
|
"FeatureRecommendations": false,
|
||||||
"FeatureRecommendations": false,
|
"UrlbarInterventions": false,
|
||||||
"UrlbarInterventions": false,
|
"SkipOnboarding": true,
|
||||||
"SkipOnboarding": true,
|
"MoreFromMozilla": false
|
||||||
"MoreFromMozilla": false
|
},
|
||||||
},
|
"FirefoxHome": {
|
||||||
"FirefoxHome": {
|
"Search": true,
|
||||||
"Search": true,
|
"TopSites": true,
|
||||||
"TopSites": true,
|
"SponsoredTopSites": false,
|
||||||
"SponsoredTopSites": false,
|
"Highlights": false,
|
||||||
"Highlights": false,
|
"Pocket": false,
|
||||||
"Pocket": false,
|
"SponsoredPocket": false,
|
||||||
"SponsoredPocket": false,
|
"Snippets": false,
|
||||||
"Snippets": false,
|
"Locked": true
|
||||||
"Locked": true
|
},
|
||||||
},
|
"SearchSuggestEnabled": false,
|
||||||
"SearchSuggestEnabled": false,
|
"ShowSearchSuggestionsFirst": false,
|
||||||
"ShowSearchSuggestionsFirst": false,
|
"NewTabPage": false,
|
||||||
"NewTabPage": false,
|
"SearchEngines": {
|
||||||
"SearchEngines": {
|
"Add": [
|
||||||
"Add": [
|
{
|
||||||
{
|
"Name": "Kagi",
|
||||||
"Name": "Kagi",
|
"URLTemplate": "https://kagi.com/search?q={searchTerms}",
|
||||||
"URLTemplate": "https://kagi.com/search?q={searchTerms}",
|
"Method": "GET",
|
||||||
"Method": "GET",
|
"IconURL": "https://kagi.com/favicon.ico",
|
||||||
"IconURL": "https://kagi.com/favicon.ico",
|
"Alias": "@k",
|
||||||
"Alias": "@k",
|
"Default": true
|
||||||
"Default": true
|
}
|
||||||
}
|
],
|
||||||
],
|
"Remove": [
|
||||||
"Remove": [
|
"Bing",
|
||||||
"Bing",
|
"Google",
|
||||||
"Google",
|
"DuckDuckGo",
|
||||||
"DuckDuckGo",
|
"Wikipedia (en)"
|
||||||
"Wikipedia (en)"
|
]
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
'';
|
}
|
||||||
};
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue