l 1 mors: remove obsolete chromium-patched

This commit is contained in:
lassulus 2016-11-27 15:06:46 +01:00
parent c7ec729c6b
commit 5b1e5bbe0e
2 changed files with 0 additions and 49 deletions

View File

@ -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

View File

@ -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
# '';
# }))
#];
}