fix: declare user home-directories in buer.scm

pull/1/head
anemofilia 2023-08-10 14:43:41 -03:00
parent 415cbd9e3f
commit 1376472a08
No known key found for this signature in database
GPG Key ID: 5A8F3D62C87A2B33
1 changed files with 3 additions and 0 deletions

View File

@ -84,12 +84,15 @@
(cons* (user-account (cons* (user-account
(name "radio") (name "radio")
(password %radio-password) (password %radio-password)
(home-directory "/home/radio")
(shell (file-append dash "/bin/dash")) (shell (file-append dash "/bin/dash"))
(uid 1000)
(group "users") (group "users")
(supplementary-groups `("audio" "input" "video" "wheel"))) (supplementary-groups `("audio" "input" "video" "wheel")))
(user-account (user-account
(name "root") (name "root")
(password %root-password) (password %root-password)
(home-directory "/root")
(uid 0) (uid 0)
(group "root") (group "root")
(shell (file-append dash "/bin/dash"))) (shell (file-append dash "/bin/dash")))