···2222 '';
2323 };
24242525+ autoMountShares = mkOption {
2626+ type = types.bool;
2727+ default = true;
2828+ description = ''
2929+ Control prlfsmountd service. When this service is running, shares can not be manually
3030+ mounted through `mount -t prl_fs ...` as this service will remount and trample any set options.
3131+ Recommended to enable for simple file sharing, but extended share use such as for code should
3232+ disable this to manually mount shares.
3333+ '';
3434+ };
2535 };
26362737 };
···6777 };
6878 };
69797070- systemd.services.prlfsmountd = {
8080+ systemd.services.prlfsmountd = mkIf config.hardware.parallels.autoMountShares {
7181 description = "Parallels Shared Folders Daemon";
7282 wantedBy = [ "multi-user.target" ];
7383 serviceConfig = rec {