diff options
author | EuAndreh <eu@euandre.org> | 2024-08-18 21:07:46 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-08-18 21:07:46 -0300 |
commit | bac87722144e10024813a053c951617e43ed6503 (patch) | |
tree | ddb1c60b3ae7143e17246a0eb29c79fa9c5b75a5 | |
parent | rm tests/assert-shellcheck.sh (diff) | |
download | server-bac87722144e10024813a053c951617e43ed6503.tar.gz server-bac87722144e10024813a053c951617e43ed6503.tar.xz |
system.scm: Do not (create-home-directory? ...) for Git: it changes permissions
-rw-r--r-- | src/guix/system.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/guix/system.scm b/src/guix/system.scm index b50e9af..3b840bd 100644 --- a/src/guix/system.scm +++ b/src/guix/system.scm @@ -209,6 +209,7 @@ (system? #t) (comment "External SSH Git service user") (home-directory "/srv/git") + (create-home-directory? #f) (shell (file-append git "/bin/git-shell")))))) |