summaryrefslogtreecommitdiff
path: root/src/content/pastebins/2018/07/13/guixbuilder.adoc
blob: 84e84d9e7e590790d78659e458c5caee220a8c87 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
= Guix builder user creation commands

[source,shell]
----
groupadd --system guixbuild
for i in `seq -w 1 10`;
do
    useradd -g guixbuild -G guixbuild           \
            -d /var/empty -s `which nologin`    \
            -c "Guix build user $i" --system    \
            guixbuilder$i;
done
----