extra-container icon indicating copy to clipboard operation
extra-container copied to clipboard

`autoStart` option doesn't work

Open danbst opened this issue 5 years ago • 1 comments

On NixOS it is handled by setting extra symlinks in /etc/systemd/system/machines.target.wants directory. Currently I'm doing workaround of:

        machines_wants=/etc/systemd/system/machines.target.wants
        mkdir -p $machines_wants
        rm -rf $machines_wants/*
        for service in $(ls -d /usr/lib/systemd/system/*); do
          ln -s $service $machines_wants/
        done

danbst avatar Mar 03 '19 00:03 danbst

Thanks for the suggestion, I'll fix that soon.

erikarvstedt avatar Feb 25 '20 11:02 erikarvstedt

Implemented in https://github.com/erikarvstedt/extra-container/commit/8f729fcbb4deccb0a588f1ec2fdb01785b4f0059.

erikarvstedt avatar Jun 18 '23 10:06 erikarvstedt