nixos/systemd-nspawn: Remove dependency on bogus "machine.target"

"machine.target" doesn't actually exist, it's misspelled version
of "machines.target".  However, the "systemd-nspawn@.service"
unit already has a default dependency on "machines.target"
This commit is contained in:
Arian van Putten 2018-10-21 21:51:51 +02:00
parent 7c3f27dba9
commit 3be00fa60c

View File

@ -112,9 +112,6 @@ in {
environment.etc."systemd/nspawn".source = generateUnits "nspawn" units [] [];
systemd.services."systemd-nspawn@" = {
wantedBy = [ "machine.target" ];
};
};
}