diff options
author | EuAndreh <eu@euandre.org> | 2024-07-10 13:08:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-07-10 13:09:46 -0300 |
commit | 0a64614c91c0ea7bb8106e0f251b665c96484e15 (patch) | |
tree | 5510ec4abeefc63c33caba60f25682b29beef1c8 | |
parent | system.scm: Stick to TLSv1.3 only (diff) | |
download | toph-0a64614c91c0ea7bb8106e0f251b665c96484e15.tar.gz toph-0a64614c91c0ea7bb8106e0f251b665c96484e15.tar.xz |
Revert "system.scm: Do not export all repositories over git:// by default"
This reverts commit d48b95a3431d6dcb711970dc6848ecebc67dd6c6.
Notes
See CI logs with:
git notes --ref=refs/notes/ci-logs show 0a64614c91c0ea7bb8106e0f251b665c96484e15
git notes --ref=refs/notes/ci-data show 0a64614c91c0ea7bb8106e0f251b665c96484e15
Exit status: 128
Duration: 0
-rw-r--r-- | src/infrastructure/guix/system.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm index 5ff5e37..1690f31 100644 --- a/src/infrastructure/guix/system.scm +++ b/src/infrastructure/guix/system.scm @@ -430,7 +430,9 @@ ("init.scm" ,(plain-file "init.scm" (file "src/infrastructure/config/init.scm"))) ("conf.env" ,(plain-file "conf.env" (file "src/infrastructure/config/conf.env"))) ("gitconfig" ,(plain-file "gitconfig" (file "src/infrastructure/config/gitconfig"))))) - (service git-daemon-service-type) + (service git-daemon-service-type + (git-daemon-configuration + (export-all? #t))) (simple-service 'add-wireguard-aliases hosts-service-type (list (host "10.0.0.0" "toph") |