Merge pull request #129304 from yisraeldov/patch-1

programs.chromium: fix policies for brave
This commit is contained in:
Mario Rodas 2022-04-15 22:08:43 -05:00 committed by GitHub
commit 9bad452131
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -108,5 +108,8 @@ in
# for google-chrome https://www.chromium.org/administrators/linux-quick-start
environment.etc."opt/chrome/policies/managed/default.json".text = builtins.toJSON defaultProfile;
environment.etc."opt/chrome/policies/managed/extra.json".text = builtins.toJSON cfg.extraOpts;
# for brave
environment.etc."brave/policies/managed/default.json".text = builtins.toJSON defaultProfile;
environment.etc."brave/policies/managed/extra.json".text = builtins.toJSON cfg.extraOpts;
};
}