summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2017-01-29 00:37:17 +0100
committerGitHub <noreply@github.com>2017-01-29 00:37:17 +0100
commitac1e65c3029eb2ace6ac86db9f81b191ec979642 (patch)
tree4d593f5b60406f157aca8cd432c1385242117932 /nixos/modules
parentba1aeb8cae90682f8a197264789a9ed21c6ea10f (diff)
parent46c0da181832d0981aece95303438ff61f000917 (diff)
downloadnixlib-ac1e65c3029eb2ace6ac86db9f81b191ec979642.tar
nixlib-ac1e65c3029eb2ace6ac86db9f81b191ec979642.tar.gz
nixlib-ac1e65c3029eb2ace6ac86db9f81b191ec979642.tar.bz2
nixlib-ac1e65c3029eb2ace6ac86db9f81b191ec979642.tar.lz
nixlib-ac1e65c3029eb2ace6ac86db9f81b191ec979642.tar.xz
nixlib-ac1e65c3029eb2ace6ac86db9f81b191ec979642.tar.zst
nixlib-ac1e65c3029eb2ace6ac86db9f81b191ec979642.zip
Merge pull request #22230 from michaelpj/services/arbtt-fix-wanted-by
arbtt: multi-user.target does not exist in user systemd
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/monitoring/arbtt.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/arbtt.nix b/nixos/modules/services/monitoring/arbtt.nix
index 27d59e367d5c..1135c2c441cb 100644
--- a/nixos/modules/services/monitoring/arbtt.nix
+++ b/nixos/modules/services/monitoring/arbtt.nix
@@ -49,7 +49,7 @@ in {
   config = mkIf cfg.enable {
     systemd.user.services.arbtt = {
       description = "arbtt statistics capture service";
-      wantedBy = [ "multi-user.target" ];
+      wantedBy = [ "default.target" ];
 
       serviceConfig = {
         Type = "simple";