Compare commits

..

No commits in common. "7c60a88eb3c6753ab0aaa3392fd0daa716b3bbac" and "1ffbab4a5019f5c3800abe4a958528b9e2500a86" have entirely different histories.

3 changed files with 3 additions and 4 deletions

View file

@ -2,7 +2,7 @@
{
programs.chromium = {
enable = true;
package = pkgs.ungoogled-chromium.override { enableWideVine = true; };
package = pkgs.ungoogled-chromium;
commandLineArgs = [
"--extension-mime-request-handling=always-prompt-for-install" # Enable Extension-Install Dialogue
"--enable-features=ClearDataOnExit,NoReferrers,SpoofWebGLInfo" # Feature Flags

View file

@ -39,9 +39,8 @@ in {
SearchEngines.Add = [ # Only Available in ESR Releases https://mozilla.github.io/policy-templates/#searchengines--add
{
Name = "Brave";
URLTemplate = "https://search.brave.com/search?q={searchTerms}";
URLTemplate = "https://search.brave.com/search?q={SearchTerms}";
Alias = "br";
IconURL = "https://cdn.search.brave.com/serp/v3/_app/immutable/assets/brave-search-icon.CsIFM2aN.svg";
}
];
# Extensions https://mozilla.github.io/policy-templates#extensionsettings

View file

@ -41,7 +41,7 @@ in {
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ { device = "/swapfile"; size = 4 * 1024; } ];
swapDevices = [ { device = "/swapfile"; size = 8 * 1024; } ];
# Misc
networking.useDHCP = lib.mkDefault true;