aboutsummaryrefslogtreecommitdiff
path: root/_pastebins/2018-07-13-guix-builder-user-creation-commands.md
blob: 82204a8cb35347cd72a244ad7dac342199f49a9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---

title: Guix builder user creation commands

date: 2018-07-13

layout: post

lang: en

eu_categories: guix

ref: guix-builder-user-creation-commands

---

```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
```