aboutsummaryrefslogtreecommitdiff
path: root/_pastebins/2018-07-13-guix-builder-user-creation-commands.md
blob: 356fe4b82601076d7dd44ea9253b31f0df806fcf (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
title: Guix builder user creation commands
date: 2018-07-13
layout: pastebin
lang: en
---

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