Skip to content

Commit

Permalink
WantedBy should be a list
Browse files Browse the repository at this point in the history
  • Loading branch information
upidapi committed Jan 4, 2025
1 parent 80b96f6 commit 2e01f41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules.nix
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ let
then
{
home.packages = extraPackages;
home.activation.NixVirt = lib.hm.dag.entryAfter [ "installPackages" ] script;
systemd.user.services.nixvirt = {
Unit = {
Description = "Configure libvirt objects";
Expand All @@ -155,7 +156,7 @@ let
Type = "oneshot";
};
Install = {
WantedBy = "default.target";
WantedBy = ["default.target"];
};
};
}
Expand Down

0 comments on commit 2e01f41

Please sign in to comment.