about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-10-21 22:59:06 +0100
committerGitHub <noreply@github.com>2018-10-21 22:59:06 +0100
commit7fa3394a5b9699cd9812a9029addd0dc1d08debd (patch)
tree20319d0156d7db7dbcd30a9fa2d042d5752aed54
parentaab3b1bb5a232941581980cbb744052569c22c08 (diff)
parent3be00fa60c93ec4537cd6cf28a1081cc41b671e8 (diff)
downloadnixlib-7fa3394a5b9699cd9812a9029addd0dc1d08debd.tar
nixlib-7fa3394a5b9699cd9812a9029addd0dc1d08debd.tar.gz
nixlib-7fa3394a5b9699cd9812a9029addd0dc1d08debd.tar.bz2
nixlib-7fa3394a5b9699cd9812a9029addd0dc1d08debd.tar.lz
nixlib-7fa3394a5b9699cd9812a9029addd0dc1d08debd.tar.xz
nixlib-7fa3394a5b9699cd9812a9029addd0dc1d08debd.tar.zst
nixlib-7fa3394a5b9699cd9812a9029addd0dc1d08debd.zip
Merge pull request #48796 from arianvp/fix-nspawn
nixos/systemd-nspawn: Remove dependency on bogus "machine.target"
-rw-r--r--nixos/modules/system/boot/systemd-nspawn.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/nixos/modules/system/boot/systemd-nspawn.nix b/nixos/modules/system/boot/systemd-nspawn.nix
index 83fef8354360..f4fa09694537 100644
--- a/nixos/modules/system/boot/systemd-nspawn.nix
+++ b/nixos/modules/system/boot/systemd-nspawn.nix
@@ -112,9 +112,6 @@ in {
 
       environment.etc."systemd/nspawn".source = generateUnits "nspawn" units [] [];
 
-      systemd.services."systemd-nspawn@" = {
-        wantedBy = [ "machine.target" ];
-      };
   };
 
 }