From 070d07588998cde13c4e9d8a296aa470b80a1127 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Tue, 28 Jun 2016 11:36:11 -0700 Subject: [PATCH] sj laptop: enable systemd-resolved --- configuration/steveej-laptop/system.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration/steveej-laptop/system.nix b/configuration/steveej-laptop/system.nix index 5854ca5..dfa77a9 100644 --- a/configuration/steveej-laptop/system.nix +++ b/configuration/steveej-laptop/system.nix @@ -152,6 +152,9 @@ ATTR{idVendor}=="05c6", ATTR{idProduct}=="6765", SYMLINK+="libmtp-%k", MODE="660", GROUP="audio", ENV{ID_MTP_DEVICE}="1", ENV{ID_MEDIA_PLAYER}="1", TAG+="uaccess" ''; + services.resolved.enable = true; + + # hardware related services hardware = { bluetooth.enable = true; pulseaudio = { @@ -161,6 +164,7 @@ }; }; + # virtualization virtualisation.libvirtd.enable = true; virtualisation.virtualbox.host.enable = true; virtualisation.virtualbox.host.addNetworkInterface = true;