home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 94b02ac82d1a668d5fe5355a59ef4f896967aa39
parent 3784370e530a804ae60ead962bca69ce021a897d
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Wed, 16 Dec 2020 16:22:57 +0100

systems: add krb support for rh google chrome

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/modules/profiles/redhat.nix | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/systems/modules/profiles/redhat.nix b/systems/modules/profiles/redhat.nix @@ -11,7 +11,13 @@ in }; }; config = mkIf cfg.enable { - environment.systemPackages = with pkgs; [ krb5 google-chrome libnotify ]; + environment.systemPackages = with pkgs; [ + krb5 + (google-chrome.override { + commandLineArgs = "--auth-negotiate-delegate-whitelist=*.redhat.com"; + }) + libnotify + ]; # NetworkManager environment.etc."NetworkManager/system-connections/1-RHVPN.ovpn" = { source = pkgs.mkSecret ../../../secrets/etc/NetworkManager/system-connections/1-RHVPN.ovpn;