diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-02-08 00:18:25 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-02-08 00:18:25 +0100 |
commit | ea0e9ce2e6d0c99106c47ee32203b92933a837de (patch) | |
tree | 9d578ad2496679c6828ffebc0e000260cb5c5bf7 /gnu/system.scm | |
parent | 7a03af707c1a77a660f3d45686587c87c11c7562 (diff) | |
download | guix-ea0e9ce2e6d0c99106c47ee32203b92933a837de.tar guix-ea0e9ce2e6d0c99106c47ee32203b92933a837de.tar.gz |
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.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index e06b8103a5..6918d5bcb8 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -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)))) |