From 1376472a08ed00bd8653cf2f7ee6199c21094560 Mon Sep 17 00:00:00 2001 From: anemofilia Date: Thu, 10 Aug 2023 14:43:41 -0300 Subject: [PATCH] fix: declare user home-directories in buer.scm --- buer.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buer.scm b/buer.scm index 2b16062..90e5822 100644 --- a/buer.scm +++ b/buer.scm @@ -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")))