diff --git a/PKGBUILD b/PKGBUILD
index 3dabfc556c798199a858342fcc1f60037ac08a07..5c48e1595664b09093983a5c1f8742f3093e8131 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
 
 pkgname=filesystem
 pkgver=2012.10
-pkgrel=1
+pkgrel=2
 pkgdesc='Base filesystem'
 arch=('any')
 license=('GPL')
@@ -10,7 +10,7 @@ url='http://www.archlinux.org'
 groups=('base')
 install='filesystem.install'
 makedepends=('asciidoc')
-depends=('iana-etc' 'bash' 'coreutils')
+depends=('iana-etc' 'bash' 'coreutils' 'nss-myhostname')
 backup=('etc/fstab' 'etc/crypttab' 'etc/group' 'etc/hosts' 'etc/ld.so.conf' 'etc/passwd'
         'etc/shadow' 'etc/gshadow' 'etc/resolv.conf' 'etc/motd' 'etc/nsswitch.conf'
         'etc/shells' 'etc/host.conf' 'etc/securetty' 'etc/profile' 'etc/issue')
@@ -89,12 +89,12 @@ package() {
 }
 md5sums=('004013ac940ef3d3cdd8c596e7accfe1'
          '7813c481156f6b280a3ba91fc6236368'
-         '13753e4e0964f3652b0cc60a28528bdf'
+         '9e4533df61f0c82d6b2e2371f7376282'
          '4c4540eeb748bf1f71d631b8c1dcf0b3'
          'f28150d4c0b22a017be51b9f7f9977ed'
          '6e488ffecc8ba142c0cf7e2d7aeb832e'
          '455b78cada80f40b6f6968f5cbd97a2e'
-         'b8355d9d2782f424f4cedcf682651be0'
+         '01249bb0ba4468f95e2cc3a627f5e6e3'
          'ca716f853860199c1286e7939b2f2666'
          '1745349eb24ed21b4cfaa6f423bddb76'
          '7bc65f234dfb6abf24e7c3b03e86f4ff'
@@ -105,5 +105,5 @@ md5sums=('004013ac940ef3d3cdd8c596e7accfe1'
          '677523dbe94b79299aa91b35ed8203b6'
          'f3b6ae7db8adffaaa4bffc6099dcbd50'
          'a8a962370cd0128465d514e6a1f74130'
-         '640f3bb28b848cb87cfff7063ebeaf42'
+         'f339bbc45ff3ad4dd73039beab2f28e3'
          '3807d07215d9116331fe1cf8feeaa0f8')
diff --git a/archlinux.7.txt b/archlinux.7.txt
index 784e020805d91edde959f519ffe82478871b2aa5..74eee59777b2af8f23ed2ed2e5bef4f4a62ab065 100644
--- a/archlinux.7.txt
+++ b/archlinux.7.txt
@@ -17,16 +17,15 @@ DESCRIPTION
 Arch Linux exposes the user to the system without hiding any details. This manpage gives a
 brief overview of the configuration files that should be set up on a fresh install.
 
-INITSCRIPTS[[I]]
-----------------
-The initscripts are configured in rc.conf. Here you configure what daemons to start on boot, what storage
-technologies should be enabled and, optionally, a basic network setup.
+SYSTEM SERVICES[[S]]
+--------------------
+System services to be started at boot can be enabled using 'systemctl enable <name>.service'. To view
+available services use 'systemctl list-unit-files'.
 
 HOSTNAME[[H]]
 -------------
-The hostname of the machine should be written to /etc/hostname. Additionally, either /etc/hosts should be
-configured accordingly, or nss-myhostname should be used. This is needed so the hostname can always
-be resolved to the current machine, which is required by some programs.
+The hostname of the machine can be set using 'hostnamectl set-hostname <hostname>'. It will then be
+written to /etc/hostname.
 
 LOCALIZATION[[L]]
 -----------------
@@ -41,13 +40,13 @@ other things. Note that these settings only apply to the console, and not if you
 
 TIME[[T]]
 ---------
-The local timezone is configured by *symlinking* /etc/localtime to the correct zoneinfo file under
-/usr/share/zoneinfo/. E.g.,
+The local timezone is configured by calling 'timedatectl set-timezone <Region/City>'. A *symlink* is then created
+from /etc/localtime to the correct zoneinfo file under /usr/share/zoneinfo/. E.g.,
 
-    /etc/localtime -> /usr/share/zoneinfo/Europe/Paris
+    /etc/localtime -> ../usr/share/zoneinfo/Europe/Paris
 
 The real-time clock, which keeps track of time when the computer is off, can be configured to either
-be in UTC or in localtime in /etc/adjtime. The default is UTC.
+be in UTC or in localtime by calling 'timedatectl set-local-rtc <false|true>'. The default is UTC.
 
 FILESYSTEMS[[F]]
 ----------------
@@ -73,8 +72,8 @@ and modules to be blacklisted from auto-loading can be configured in /etc/modpro
 SEE ALSO
 --------
 
-rc.conf(5), hostname(5), hosts(5), nsswitch.conf(5), locale.conf(5), vconsole.conf(5), timezone(3), hwclock(8), fstab(5), crypttab(5),
-mkinitcpio(8), pacman(8), pacman.conf(5), grub-mkconfig(8), syslinux(1), modules-load.d(5), modprobe.d(5)
+systemctl(1), hostnamectl(1), hostname(5), locale.conf(5), vconsole.conf(5), timedatectl(1), timezone(3), hwclock(8), fstab(5),
+crypttab(5), mkinitcpio(8), pacman(8), pacman.conf(5), grub-mkconfig(8), syslinux(1), modules-load.d(5), modprobe.d(5)
 
 AUTHORS
 -------
diff --git a/nsswitch.conf b/nsswitch.conf
index 6e459adb62caab228cce41ab405bffb6a98a982c..4a4f5770d5192aaed4a6bbd3f442801ea880b616 100644
--- a/nsswitch.conf
+++ b/nsswitch.conf
@@ -6,7 +6,7 @@ shadow: files
 
 publickey: files
 
-hosts: files dns
+hosts: files dns myhostname
 networks: files
 
 protocols: files
diff --git a/shadow b/shadow
index ccab68d33262d13371b4d7e9b2ff477afe601c1e..5eff4935c4afefac75fcb3e38235e67f20fd2355 100644
--- a/shadow
+++ b/shadow
@@ -4,4 +4,5 @@ daemon:x:14871::::::
 mail:x:14871::::::
 ftp:x:14871::::::
 http:x:14871::::::
+uuidd:x:14871::::::
 nobody:x:14871::::::