home

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

commit 31b4ee65f4c20f8645b98183089d7b56a8e5df10
parent 74326360e4f04f1fdcce9af2212a3dc4311888ca
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Tue,  2 Jul 2019 09:42:12 +0200

profiles.git: use etc path for ca-bundle_crt

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

Diffstat:
Mmodules/profiles/git.nix | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/modules/profiles/git.nix b/modules/profiles/git.nix @@ -3,7 +3,7 @@ with lib; let cfg = config.profiles.git; - ca-bundle_crt = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"; + ca-bundle_crt = "/etc/ssl/certs/ca-bundle.crt"; in { options = { @@ -103,10 +103,10 @@ in statusHints = false; pushNonFastForward = false; }; - #http = { - # sslCAinfo = "${ca-bundle_crt}"; - # sslverify = true; - #}; + http = { + sslCAinfo = "${ca-bundle_crt}"; + sslverify = true; + }; github.user = "vdemeester"; "filter \"lfs\"" = { clean = "${pkgs.git-lfs}/bin/git-lfs clean -- %f";