gnu: Move root's home directory to /root.

* gnu/system.scm (operating-system-derivation): Change root's
  'home-directory' to "/root".
* gnu/system/vm.scm (operating-system-default-contents): Add /root.
master
Ludovic Courtès 2014-02-08 00:18:25 +01:00
parent 7a03af707c
commit ea0e9ce2e6
2 changed files with 2 additions and 1 deletions

View File

@ -317,7 +317,7 @@ alias ll='ls -l'
(password "")
(uid 0) (gid 0)
(comment "System administrator")
(home-directory "/"))
(home-directory "/root"))
(append (operating-system-users os)
(append-map service-user-accounts
services))))

View File

@ -485,6 +485,7 @@ basic contents of the root file system of OS."
(directory "/tmp")
(directory "/var/nix/profiles/per-user/root" 0 0)
(directory "/root" 0 0) ; an exception
,@(append-map user-directories
(operating-system-users os))))))