diff options
author | EuAndreh <eu@euandre.org> | 2020-11-04 17:38:20 -0300 |
---|---|---|
committer | nixpkgs-review <nixpkgs-review@example.com> | 2020-11-04 17:38:31 -0300 |
commit | 74e220677ac2cb1bef16d0f62092d56db6f62e1d (patch) | |
tree | 584206f01cc1b1a2dffedbffb943d4d7fb601ac2 /locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po | |
parent | Update mdpo version: 0.2.36 -> 0.2.37 (diff) | |
download | euandre.org-74e220677ac2cb1bef16d0f62092d56db6f62e1d.tar.gz euandre.org-74e220677ac2cb1bef16d0f62092d56db6f62e1d.tar.xz |
Add all code blocks to translation po files
Diffstat (limited to 'locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po')
-rw-r--r-- | locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po index 351c491..681d0ce 100644 --- a/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po +++ b/locale/pt/LC_MESSAGES/_pastebins/2018-07-13-guix-users-in-nixos-system-configuration.po @@ -8,3 +8,41 @@ msgid "" "layout: pastebin\n" "lang: en" msgstr "" + +msgid "" +" users = {\n" +" mutableUsers = false;\n" +"\n" +" extraUsers =\n" +" let\n" +" andrehUser = {\n" +" andreh = {\n" +" # my custom user config\n" +" };\n" +" };\n" +" # From the Guix manual:\n" +" # https://www.gnu.org/software/guix/manual/en/html_node/Build-Environment-Setup.html#Build-Environment-Setup\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" +msgstr "" |