diff options
author | lassulus <lass@aidsballs.de> | 2016-11-27 15:06:46 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-11-27 15:18:44 +0100 |
commit | 5b1e5bbe0e6cbeb052e9087e87d476166cebdec5 (patch) | |
tree | 932a9a99145b565ec1cd01646a87fd32053d38b7 /lass/2configs | |
parent | c7ec729c6b8b068a6a817f803f0befe14dbd5569 (diff) |
l 1 mors: remove obsolete chromium-patched
Diffstat (limited to 'lass/2configs')
-rw-r--r-- | lass/2configs/chromium-patched.nix | 48 |
1 files changed, 0 insertions, 48 deletions
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 - # ''; - # })) - #]; -} |