summary refs log tree commit diff
path: root/nixos/modules/system/boot/resolved.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-01-26 01:52:38 +0100
committerRobin Gloster <mail@glob.in>2017-01-26 17:52:52 +0100
commita38f1911d34f2a72e15d5e98d76bece6cb8042a8 (patch)
tree405bbccaca440b4810c3d3831d41858c887b4239 /nixos/modules/system/boot/resolved.nix
parent6973c7739ea1581595931e8c8b3b76241083b2df (diff)
downloadnixpkgs-a38f1911d34f2a72e15d5e98d76bece6cb8042a8.tar
nixpkgs-a38f1911d34f2a72e15d5e98d76bece6cb8042a8.tar.gz
nixpkgs-a38f1911d34f2a72e15d5e98d76bece6cb8042a8.tar.bz2
nixpkgs-a38f1911d34f2a72e15d5e98d76bece6cb8042a8.tar.lz
nixpkgs-a38f1911d34f2a72e15d5e98d76bece6cb8042a8.tar.xz
nixpkgs-a38f1911d34f2a72e15d5e98d76bece6cb8042a8.tar.zst
nixpkgs-a38f1911d34f2a72e15d5e98d76bece6cb8042a8.zip
systemd: 231 -> 232
Includes adding some more upstream units and removing obsolete (-.slice) ones.
Diffstat (limited to 'nixos/modules/system/boot/resolved.nix')
-rw-r--r--nixos/modules/system/boot/resolved.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/resolved.nix b/nixos/modules/system/boot/resolved.nix
index 4b7c545dcc0..a3fb733c289 100644
--- a/nixos/modules/system/boot/resolved.nix
+++ b/nixos/modules/system/boot/resolved.nix
@@ -71,7 +71,9 @@ in
 
   config = mkIf cfg.enable {
 
-    systemd.additionalUpstreamSystemUnits = [ "systemd-resolved.service" ];
+    systemd.additionalUpstreamSystemUnits = [
+      "systemd-resolved.service" "org.freedesktop.resolve1.busname"
+    ];
 
     systemd.services.systemd-resolved = {
       wantedBy = [ "multi-user.target" ];