nixos/spacenavd: add wantedBy for automatic startup (#366768)

This commit is contained in:
Arne Keller
2025-05-21 10:20:19 +02:00
committed by GitHub
@@ -17,7 +17,10 @@ in
config = lib.mkIf cfg.enable {
systemd = {
packages = [ pkgs.spacenavd ];
services.spacenavd.enable = true;
services.spacenavd = {
enable = true;
wantedBy = [ "graphical.target" ];
};
};
};
}