Compare commits
3 commits
1ffbab4a50
...
7c60a88eb3
Author | SHA1 | Date | |
---|---|---|---|
7c60a88eb3 | |||
815ba136b2 | |||
9df45430cc |
3 changed files with 4 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
{
|
{
|
||||||
programs.chromium = {
|
programs.chromium = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.ungoogled-chromium;
|
package = pkgs.ungoogled-chromium.override { enableWideVine = true; };
|
||||||
commandLineArgs = [
|
commandLineArgs = [
|
||||||
"--extension-mime-request-handling=always-prompt-for-install" # Enable Extension-Install Dialogue
|
"--extension-mime-request-handling=always-prompt-for-install" # Enable Extension-Install Dialogue
|
||||||
"--enable-features=ClearDataOnExit,NoReferrers,SpoofWebGLInfo" # Feature Flags
|
"--enable-features=ClearDataOnExit,NoReferrers,SpoofWebGLInfo" # Feature Flags
|
||||||
|
|
|
@ -39,8 +39,9 @@ in {
|
||||||
SearchEngines.Add = [ # Only Available in ESR Releases https://mozilla.github.io/policy-templates/#searchengines--add
|
SearchEngines.Add = [ # Only Available in ESR Releases https://mozilla.github.io/policy-templates/#searchengines--add
|
||||||
{
|
{
|
||||||
Name = "Brave";
|
Name = "Brave";
|
||||||
URLTemplate = "https://search.brave.com/search?q={SearchTerms}";
|
URLTemplate = "https://search.brave.com/search?q={searchTerms}";
|
||||||
Alias = "br";
|
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
|
# Extensions https://mozilla.github.io/policy-templates#extensionsettings
|
||||||
|
|
|
@ -41,7 +41,7 @@ in {
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0022" "dmask=0022" ];
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
};
|
};
|
||||||
swapDevices = [ { device = "/swapfile"; size = 8 * 1024; } ];
|
swapDevices = [ { device = "/swapfile"; size = 4 * 1024; } ];
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue