aboutsummaryrefslogtreecommitdiff
path: root/locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-11-04 17:38:20 -0300
committernixpkgs-review <nixpkgs-review@example.com>2020-11-04 17:38:31 -0300
commit74e220677ac2cb1bef16d0f62092d56db6f62e1d (patch)
tree584206f01cc1b1a2dffedbffb943d4d7fb601ac2 /locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po
parentUpdate mdpo version: 0.2.36 -> 0.2.37 (diff)
downloadeuandre.org-74e220677ac2cb1bef16d0f62092d56db6f62e1d.tar.gz
euandre.org-74e220677ac2cb1bef16d0f62092d56db6f62e1d.tar.xz
Add all code blocks to translation po files
Diffstat (limited to 'locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po')
-rw-r--r--locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po129
1 files changed, 129 insertions, 0 deletions
diff --git a/locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po b/locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po
index ad29a0a..dfc690b 100644
--- a/locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po
+++ b/locale/pt/LC_MESSAGES/_articles/2018-07-17-running-guix-on-nixos.po
@@ -99,3 +99,132 @@ msgstr ""
msgid "Happy Guix/Nix hacking!"
msgstr ""
+
+msgid ""
+"groupadd --system guixbuild\n"
+"for i in `seq -w 1 10`;\n"
+"do\n"
+" useradd -g guixbuild -G guixbuild \\\n"
+" -d /var/empty -s `which nologin` \\\n"
+" -c \"Guix build user $i\" --system \\\n"
+" guixbuilder$i;\n"
+"done\n"
+msgstr ""
+
+msgid ""
+"$ sudo nixos-rebuild switch\n"
+"(...)\n"
+"removing user ‘guixbuilder7’\n"
+"removing user ‘guixbuilder3’\n"
+"removing user ‘guixbuilder10’\n"
+"removing user ‘guixbuilder1’\n"
+"removing user ‘guixbuilder6’\n"
+"removing user ‘guixbuilder9’\n"
+"removing user ‘guixbuilder4’\n"
+"removing user ‘guixbuilder2’\n"
+"removing user ‘guixbuilder8’\n"
+"removing user ‘guixbuilder5’\n"
+"(...)\n"
+msgstr ""
+
+msgid ""
+"{ config, pkgs, ...}:\n"
+"\n"
+"{\n"
+"\n"
+" # ... NixOS usual config ellided ...\n"
+"\n"
+" users = {\n"
+" mutableUsers = false;\n"
+"\n"
+" extraUsers =\n"
+" let\n"
+" andrehUser = {\n"
+" andreh = {\n"
+" # my custom user config\n"
+" };\n"
+" };\n"
+" buildUser = (i:\n"
+" {\n"
+" \"guixbuilder${i}\" = { # guixbuilder$i\n"
+" group = \"guixbuild\"; # -g guixbuild\n"
+" extraGroups = [\"guixbuild\"]; # -G guixbuild\n"
+" home = \"/var/empty\"; # -d /var/empty\n"
+" shell = pkgs.nologin; # -s `which nologin`\n"
+" description = \"Guix build user ${i}\"; # -c \"Guix buid user $i\"\n"
+" isSystemUser = true; # --system\n"
+" };\n"
+" }\n"
+" );\n"
+" in\n"
+" # merge all users\n"
+" pkgs.lib.fold (str: acc: acc // buildUser str)\n"
+" andrehUser\n"
+" # for i in `seq -w 1 10`\n"
+" (map (pkgs.lib.fixedWidthNumber 2) (builtins.genList (n: n+1) 10));\n"
+"\n"
+" extraGroups.guixbuild = {\n"
+" name = \"guixbuild\";\n"
+" };\n"
+" };\n"
+"}\n"
+msgstr ""
+
+msgid ""
+"# This is a \"service unit file\" for the systemd init system to launch\n"
+"# 'guix-daemon'. Drop it in /etc/systemd/system or similar to have\n"
+"# 'guix-daemon' automatically started.\n"
+"\n"
+"[Unit]\n"
+"Description=Build daemon for GNU Guix\n"
+"\n"
+"[Service]\n"
+"ExecStart=/var/guix/profiles/per-user/root/guix-profile/bin/guix-daemon --build-users-group=guixbuild\n"
+"Environment=GUIX_LOCPATH=/root/.guix-profile/lib/locale\n"
+"RemainAfterExit=yes\n"
+"StandardOutput=syslog\n"
+"StandardError=syslog\n"
+"\n"
+"# See <https://lists.gnu.org/archive/html/guix-devel/2016-04/msg00608.html>.\n"
+"# Some package builds (for example, go@1.8.1) may require even more than\n"
+"# 1024 tasks.\n"
+"TasksMax=8192\n"
+"\n"
+"[Install]\n"
+"WantedBy=multi-user.target\n"
+msgstr ""
+
+msgid ""
+"guix-daemon = {\n"
+" enable = true;\n"
+" description = \"Build daemon for GNU Guix\";\n"
+" serviceConfig = {\n"
+" ExecStart = \"/var/guix/profiles/per-user/root/guix-profile/bin/guix-daemon --build-users-group=guixbuild\";\n"
+" Environment=\"GUIX_LOCPATH=/root/.guix-profile/lib/locale\";\n"
+" RemainAfterExit=\"yes\";\n"
+" StandardOutput=\"syslog\";\n"
+" StandardError=\"syslog\";\n"
+" TaskMax= \"8192\";\n"
+" };\n"
+" wantedBy = [ \"multi-user.target\" ];\n"
+"};\n"
+msgstr ""
+
+msgid ""
+"$ guix package -i hello\n"
+"The following package will be installed:\n"
+" hello 2.10 /gnu/store/bihfrh609gkxb9dp7n96wlpigiv3krfy-hello-2.10\n"
+"\n"
+"substitute: updating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%\n"
+"The following derivations will be built:\n"
+" /gnu/store/nznmdn6inpwxnlkrasydmda4s2vsp9hg-profile.drv\n"
+" /gnu/store/vibqrvw4c8lacxjrkqyzqsdrmckv77kq-fonts-dir.drv\n"
+" /gnu/store/hi8alg7wi0wgfdi3rn8cpp37zhx8ykf3-info-dir.drv\n"
+" /gnu/store/cvkbp378cvfjikz7mjymhrimv7j12p0i-ca-certificate-bundle.drv\n"
+" /gnu/store/d62fvxymnp95rzahhmhf456bsf0xg1c6-manual-database.drv\n"
+"Creating manual page database...\n"
+"1 entries processed in 0.0 s\n"
+"2 packages in profile\n"
+"$ hello\n"
+"Hello, world!\n"
+msgstr ""