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
(name "radio")
(password %radio-password)
(home-directory "/home/radio")
(shell (file-append dash "/bin/dash"))
(uid 1000)
(group "users")
(supplementary-groups `("audio" "input" "video" "wheel")))
(user-account
(name "root")
(password %root-password)
(home-directory "/root")
(uid 0)
(group "root")
(shell (file-append dash "/bin/dash")))