summaryrefslogtreecommitdiffstats
path: root/lass
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2016-11-27 15:06:46 +0100
committerlassulus <lass@aidsballs.de>2016-11-27 15:18:44 +0100
commit5b1e5bbe0e6cbeb052e9087e87d476166cebdec5 (patch)
tree932a9a99145b565ec1cd01646a87fd32053d38b7 /lass
parentc7ec729c6b8b068a6a817f803f0befe14dbd5569 (diff)
l 1 mors: remove obsolete chromium-patched
Diffstat (limited to 'lass')
-rw-r--r--lass/1systems/mors.nix1
-rw-r--r--lass/2configs/chromium-patched.nix48
2 files changed, 0 insertions, 49 deletions
diff --git a/lass/1systems/mors.nix b/lass/1systems/mors.nix
index 742d42bf8..99705cbf1 100644
--- a/lass/1systems/mors.nix
+++ b/lass/1systems/mors.nix
@@ -17,7 +17,6 @@ with import <stockholm/lib>;
../2configs/elster.nix
../2configs/steam.nix
../2configs/wine.nix
- ../2configs/chromium-patched.nix
../2configs/git.nix
../2configs/skype.nix
../2configs/teamviewer.nix
diff --git a/lass/2configs/chromium-patched.nix b/lass/2configs/chromium-patched.nix
deleted file mode 100644
index d9d7760dd..000000000
--- a/lass/2configs/chromium-patched.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ config, pkgs, ... }:
-
-#settings to test:
-#
- #"ForceEphemeralProfiles": true,
-let
- masterPolicy = pkgs.writeText "master.json" ''
- {
- "PasswordManagerEnabled": false,
- "DefaultGeolocationSetting": 2,
- "RestoreOnStartup": 1,
- "AutoFillEnabled": false,
- "BackgroundModeEnabled": false,
- "DefaultBrowserSettingEnabled": false,
- "SafeBrowsingEnabled": false,
- "ExtensionInstallForcelist": [
- "cjpalhdlnbpafiamejdnhcphjbkeiagm;https://clients2.google.com/service/update2/crx",
- "ihlenndgcmojhcghmfjfneahoeklbjjh;https://clients2.google.com/service/update2/crx"
- ]
- }
- '';
-
- master_preferences = pkgs.writeText "master_preferences" ''
- {
- "browser": {
- "custom_chrome_frame": true
- },
-
- "extensions": {
- "theme": {
- "id": "",
- "use_system": true
- }
- }
- }
- '';
-in {
- environment.etc."chromium/policies/managed/master.json".source = pkgs.lib.mkForce masterPolicy;
-
- #environment.systemPackages = [
- # #pkgs.chromium
- # (pkgs.lib.overrideDerivation pkgs.chromium (attrs: {
- # buildCommand = attrs.buildCommand + ''
- # touch $out/TEST123
- # '';
- # }))
- #];
-}