diff --git a/modules/home/caem/multimedia/web/firefox.nix b/modules/home/caem/multimedia/web/firefox.nix index 0b4a5e8..8df9172 100644 --- a/modules/home/caem/multimedia/web/firefox.nix +++ b/modules/home/caem/multimedia/web/firefox.nix @@ -1,73 +1,71 @@ { config, ... }: { - home.files = { - "${config.xdg.configHome}/mozilla/firefox/policies/policies.json" = { - text = '' - { - "policies": { - "EnableTrackingProtection": { - "Value": true, - "Cryptomining": true, - "Fingerprinting": true, - "EmailTracking": true, - "Level": "strict" - }, - "DisableTelemetry": true, - "DisablePocket": true, - "DisableFirefoxStudies": true, - "DisableFirefoxAccounts": false, - "DisableAccounts": false, - "DontCheckDefaultBrowser": true, - "OverrideFirstRunPage": "", - "OverridePostUpdatePage": "", - "NoDefaultBookmarks": true, - "Cookies": { - "Behavior": "reject-foreign", - "BehaviorPrivateBrowsing": "reject-foreign" - }, - "UserMessaging": { - "WhatsNew": false, - "ExtensionRecommendations": false, - "FeatureRecommendations": false, - "UrlbarInterventions": false, - "SkipOnboarding": true, - "MoreFromMozilla": false - }, - "FirefoxHome": { - "Search": true, - "TopSites": true, - "SponsoredTopSites": false, - "Highlights": false, - "Pocket": false, - "SponsoredPocket": false, - "Snippets": false, - "Locked": true - }, - "SearchSuggestEnabled": false, - "ShowSearchSuggestionsFirst": false, - "NewTabPage": false, - "SearchEngines": { - "Add": [ - { - "Name": "Kagi", - "URLTemplate": "https://kagi.com/search?q={searchTerms}", - "Method": "GET", - "IconURL": "https://kagi.com/favicon.ico", - "Alias": "@k", - "Default": true - } - ], - "Remove": [ - "Bing", - "Google", - "DuckDuckGo", - "Wikipedia (en)" - ] - } + home.file."${config.xdg.configHome}/mozilla/firefox/policies/policies.json" = { + text = '' + { + "policies": { + "EnableTrackingProtection": { + "Value": true, + "Cryptomining": true, + "Fingerprinting": true, + "EmailTracking": true, + "Level": "strict" + }, + "DisableTelemetry": true, + "DisablePocket": true, + "DisableFirefoxStudies": true, + "DisableFirefoxAccounts": false, + "DisableAccounts": false, + "DontCheckDefaultBrowser": true, + "OverrideFirstRunPage": "", + "OverridePostUpdatePage": "", + "NoDefaultBookmarks": true, + "Cookies": { + "Behavior": "reject-foreign", + "BehaviorPrivateBrowsing": "reject-foreign" + }, + "UserMessaging": { + "WhatsNew": false, + "ExtensionRecommendations": false, + "FeatureRecommendations": false, + "UrlbarInterventions": false, + "SkipOnboarding": true, + "MoreFromMozilla": false + }, + "FirefoxHome": { + "Search": true, + "TopSites": true, + "SponsoredTopSites": false, + "Highlights": false, + "Pocket": false, + "SponsoredPocket": false, + "Snippets": false, + "Locked": true + }, + "SearchSuggestEnabled": false, + "ShowSearchSuggestionsFirst": false, + "NewTabPage": false, + "SearchEngines": { + "Add": [ + { + "Name": "Kagi", + "URLTemplate": "https://kagi.com/search?q={searchTerms}", + "Method": "GET", + "IconURL": "https://kagi.com/favicon.ico", + "Alias": "@k", + "Default": true + } + ], + "Remove": [ + "Bing", + "Google", + "DuckDuckGo", + "Wikipedia (en)" + ] } } - ''; - }; + } + ''; }; }