diff options
author | David Thompson <davet@gnu.org> | 2015-06-10 08:18:27 -0400 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2015-06-10 08:18:27 -0400 |
commit | 16e557bde8457f187b4cc5783438693c9fd0765c (patch) | |
tree | ba501a83a412d7f62da8d7b62e1309e627fd9912 | |
parent | 7fe81fc2db82e0322c913096dad772951002de4f (diff) |
Update izanagi config.
-rw-r--r-- | hosts | 3 | ||||
-rw-r--r-- | izanagi.scm | 6 |
2 files changed, 7 insertions, 2 deletions
@@ -0,0 +1,3 @@ +# -*- mode: conf -*- + +24.60.202.92 stack.fruitopology.net diff --git a/izanagi.scm b/izanagi.scm index e645d6c..8eafc74 100644 --- a/izanagi.scm +++ b/izanagi.scm @@ -18,7 +18,7 @@ ;; ;; Thinkpad X220 configuration. -(use-modules (gnu) (gnu system nss)) +(use-modules (guix monads) (guix store) (gnu) (gnu system nss)) (use-service-modules desktop) (use-package-modules xfce wicd avahi xorg certs pulseaudio) @@ -44,4 +44,6 @@ nss-certs %base-packages)) (services %desktop-services) - (name-service-switch %mdns-host-lookup-nss)) + (name-service-switch %mdns-host-lookup-nss) + (hosts-file (mbegin %store-monad + (return (local-file "hosts"))))) |