How to Fix static service bolt lacks symlink to start up at boot

bolt deamon (Userspace system daemon to enable security levels for Thunderbolt™ on GNU/Linux®.) doesn’t start automatically in KDE neon flavor user 20240801-0717 .

bolt.service is a static service without the [Install] section, ‘systemctl enable bolt’ has no effect because systemctl does not know where it should create a symlink. Users must manually create the symlink:

$ find /etc /lib/ -name 'bolt.service' 2>/dev/null |xargs ls -lFhA
-rw-r--r-- 1 root root 642 févr.  7  2022 /lib/systemd/system/bolt.service

Let’s create a symlink to start the bolt service in the directory /etc/systemd/system/
This directory includes; Systemd unit files created by systemctl enable, and the unit files that are manually created by a user.

$ sudo ln -s /lib/systemd/system/bolt.service /etc/systemd/system/multi-user.target.wants/bolt.service

Enjoy
konki