summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2019-06-19 17:05:54 +0200
committerAlan Pearce2019-06-19 17:05:54 +0200
commit7ebecc0f9ba39299a58b5002792744a28200c227 (patch)
treea1980323b574b396071d62fe045e8e54519fd407
parentdad40027a898b7254f4c6a3da6272dc5ab70f912 (diff)
downloadnixos-configuration-7ebecc0f9ba39299a58b5002792744a28200c227.tar.lz
nixos-configuration-7ebecc0f9ba39299a58b5002792744a28200c227.tar.zst
nixos-configuration-7ebecc0f9ba39299a58b5002792744a28200c227.zip
Remove chromium
-rw-r--r--marvin.nix4
-rw-r--r--modules/development/base.nix1
-rw-r--r--modules/satoshipay.nix38
-rw-r--r--prefect.nix4
4 files changed, 1 insertions, 46 deletions
diff --git a/marvin.nix b/marvin.nix
index 3227fd7..0a7aceb 100644
--- a/marvin.nix
+++ b/marvin.nix
@@ -29,10 +29,6 @@
     ./modules/services/syncthing.nix
   ];
 
-  environment.systemPackages = with pkgs; [
-    chromium
-  ];
-
   networking = {
     hostName = "marvin";
     domain = "alanpearce.eu";
diff --git a/modules/development/base.nix b/modules/development/base.nix
index 0d7520b..1cf85c8 100644
--- a/modules/development/base.nix
+++ b/modules/development/base.nix
@@ -14,6 +14,7 @@
     ag
     ripgrep
 
+    firefox-devedition-bin
     httpie
     jq
 
diff --git a/modules/satoshipay.nix b/modules/satoshipay.nix
index 7ac6cdb..36c7f10 100644
--- a/modules/satoshipay.nix
+++ b/modules/satoshipay.nix
@@ -16,48 +16,10 @@
 
   nixpkgs.config.allowUnfree = true;
 
-  programs.chromium = {
-    enable = true;
-    extensions = [
-      "cjpalhdlnbpafiamejdnhcphjbkeiagm" # ublock origin
-      "aeblfdkhhhdcdjpifhhbdiojplfjncoa" # 1password x
-    ];
-    homepageLocation = "about:blank";
-    defaultSearchProviderSearchURL = "https://duckduckgo.com/?q={searchTerms}";
-    defaultSearchProviderSuggestURL = "https://duckduckgo.com/ac/?q={searchTerms}&type=list";
-    # https://www.chromium.org/administrators/policy-list-3
-    extraOpts = {
-      BlockThirdPartyCookies = true;
-      CookiesBlockedForUrls = [
-        "[*.]smartlock.google.com"
-        "[*.]mediumSmartLockSigninAllowed.com"
-      ];
-      SyncDisabled = true;
-      BuiltInDnsClientEnabled = false;
-      BrowserSignin = 0;
-      EasyUnlockAllowed = false;
-      EnableMediaRouter = false;
-      CloudPrintProxyEnabled = false;
-      CloudPrintSubmitEnabled = false;
-      SafeBrowsingEnabled = false;
-      RestoreOnStartup = 1; # Restore last session
-      AlwaysOpenPdfExternally = true;
-      BrowserNetworkTimeQueriesEnabled = false;
-      NotificationsAllowedForUrls = [
-        "gitlab.satoshipay.tech"
-        "calendar.google.com"
-      ];
-      NotificationsBlockedForUrls = [
-        "[.*]reddit.com"
-      ];
-    };
-  };
-
   environment.systemPackages = with pkgs; [
     awscli
     caddy
     openssl
-    chromium
     docker_compose
     mongodb-tools
     pgadmin
diff --git a/prefect.nix b/prefect.nix
index 1c786a7..ff5dbad 100644
--- a/prefect.nix
+++ b/prefect.nix
@@ -28,10 +28,6 @@
     ./modules/services/syncthing.nix
   ];
 
-  environment.systemPackages = with pkgs; [
-    chromium
-  ];
-
   networking = {
     hostName = "prefect";
     domain = "alanpearce.eu";