LINUX.ORG.RU

История изменений

Исправление znavko, (текущая версия) :

shell (default: Bash)
This is a G-expression denoting the file name of a program to be used as the shell (see G-Expressions).
https://www.gnu.org/software/guix/manual/en/guix.html#User-Accounts

		  (users (cons* (user-account (name "bob") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/bob"))
				(user-account (name "mom") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/mom")
					      (shell "Bash"))
				%base-user-accounts))

так:

 (shell "Bash")

Исправление znavko, :

shell (default: Bash)
This is a G-expression denoting the file name of a program to be used as the shell (see G-Expressions).
https://www.gnu.org/software/guix/manual/en/guix.html#User-Accounts

		  (users (cons* (user-account (name "bob") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/bob"))
				(user-account (name "mom") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/mom")
					      (shell "Bash"))
				%base-user-accounts))

(shell «Bash»)

Исходная версия znavko, :

shell (default: Bash)
This is a G-expression denoting the file name of a program to be used as the shell (see G-Expressions).
https://www.gnu.org/software/guix/manual/en/guix.html#User-Accounts

		  (users (cons* (user-account (name "bob") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/bob"))
				(user-account (name "mom") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/mom")
					      (shell "Bash"))
				%base-user-accounts))

(shell 'Bash)