diff options
author | Ludovic Courtès <ludo@gnu.org> | 2025-03-18 11:06:50 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-03-18 11:17:35 +0100 |
commit | 80d9270c9533d72c4549dbd0367a433e662eaa1a (patch) | |
tree | 532c32c3e663510a0e99b4f1da147faf3d9158a1 | |
parent | 3f4438741615aa1a1198f9415be8bd110138d83e (diff) | |
download | guix-80d9270c9533d72c4549dbd0367a433e662eaa1a.tar.gz guix-80d9270c9533d72c4549dbd0367a433e662eaa1a.zip |
doc: Add missing ‘use-modules’ in rootless podman example.
Fixes <https://issues.guix.gnu.org/77074>.
* doc/guix.texi (Miscellaneous Services): In
‘rootless-podman-service-type’ example, add missing ‘use-modules’ for
‘subid-range’.
Change-Id: I531b9741538ee46186d8c6e6d7e4856080337d6b
-rw-r--r-- | doc/guix.texi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 58d4c2a126..0488559332 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -42824,6 +42824,7 @@ unprivileged users to run @command{podman} commands: @lisp (use-service-modules containers networking @dots{}) +(use-modules (gnu system accounts)) ;for 'subid-range' (operating-system ;; @dots{} |