From cd61a530cba30b74f1ad6d57a326d1a5b1471f10 Mon Sep 17 00:00:00 2001 From: Colin Date: Sun, 17 Sep 2023 08:44:31 +0000 Subject: [PATCH] sxmo: fix multi-user.service -> multi-user.target typo --- hosts/modules/gui/sxmo/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/modules/gui/sxmo/default.nix b/hosts/modules/gui/sxmo/default.nix index 8bb59480..66beb80a 100644 --- a/hosts/modules/gui/sxmo/default.nix +++ b/hosts/modules/gui/sxmo/default.nix @@ -311,12 +311,13 @@ in # environment.pathsToLink = [ "/share/sxmo" ]; systemd.services."sxmo-set-permissions" = { + # TODO: some of these could be modified to be udev rules description = "configure specific /sys and /dev nodes to be writable by sxmo scripts"; serviceConfig = { Type = "oneshot"; ExecStart = "${package}/bin/sxmo_setpermissions.sh"; }; - wantedBy = [ "multi-user.service" ]; + wantedBy = [ "multi-user.target" ]; }; # if superd fails to start a service within 100ms, it'll try to start again