Zde můžete vidět rozdíly mezi vybranou verzí a aktuální verzí dané stránky.
| — | vpsadminos [2017/11/03 01:42] (aktuální) – init rmarko | ||
|---|---|---|---|
| Řádek 1: | Řádek 1: | ||
| + | ====== vpsadminOS ====== | ||
| + | New hope | ||
| + | |||
| + | Repository: https:// | ||
| + | |||
| + | ===== Building on NixOS ===== | ||
| + | |||
| + | Follow instructions in [[https:// | ||
| + | |||
| + | ===== Building on another distribution ===== | ||
| + | |||
| + | Installing **nix** is required. Use following instructions as root (best to use virtual machine as a builder): | ||
| + | |||
| + | < | ||
| + | useradd nix | ||
| + | groupadd -r nixbld | ||
| + | for n in $(seq 1 10); do | ||
| + | useradd -c "Nix build user $n" \ | ||
| + | -d /var/empty -g nixbld -G nixbld -M -N -r -s " | ||
| + | done | ||
| + | mkdir /nix | ||
| + | chown -R nix /nix | ||
| + | su -c "bash <(curl https:// | ||
| + | # source nix env | ||
| + | . ~nix/ | ||
| + | </ | ||
| + | |||
| + | Proceed with instructions in [[https:// | ||