diff options
author | David Thompson <davet@gnu.org> | 2015-06-19 20:27:05 -0400 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2015-06-19 20:27:05 -0400 |
commit | 43c0520a908a4324715bc6718796753148063a76 (patch) | |
tree | e1f8ffcfc9e446883a24394fecc1e8f141b5d937 | |
parent | 8d1986bed307e0ff162e49e81cb366ae34a55f49 (diff) |
Update izanagi.
-rw-r--r-- | izanagi.scm | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/izanagi.scm b/izanagi.scm index 8eafc74..c5f93ce 100644 --- a/izanagi.scm +++ b/izanagi.scm @@ -18,7 +18,11 @@ ;; ;; Thinkpad X220 configuration. -(use-modules (guix monads) (guix store) (gnu) (gnu system nss)) +(use-modules (guix monads) + (guix store) + (gnu) + (gnu system nss) + (gnu system linux-initrd)) (use-service-modules desktop) (use-package-modules xfce wicd avahi xorg certs pulseaudio) @@ -27,6 +31,10 @@ (timezone "America/New_York") (locale "en_US.UTF-8") (bootloader (grub-configuration (device "/dev/sda"))) + (initrd (lambda (file-systems . rest) + (apply base-initrd file-systems + #:extra-modules '("fuse") + rest))) (file-systems (cons (file-system (device "root") (title 'label) @@ -45,5 +53,4 @@ %base-packages)) (services %desktop-services) (name-service-switch %mdns-host-lookup-nss) - (hosts-file (mbegin %store-monad - (return (local-file "hosts"))))) + (hosts-file (local-file "hosts"))) |