parallels: add autoMountShares option

This commit is contained in:
Luke Adams 2018-01-19 22:41:25 -06:00
parent 786f402012
commit 2c5efdbec4

View File

@ -22,6 +22,16 @@ in
'';
};
autoMountShares = mkOption {
type = types.bool;
default = true;
description = ''
Control prlfsmountd service. When this service is running, shares can not be manually
mounted through `mount -t prl_fs ...` as this service will remount and trample any set options.
Recommended to enable for simple file sharing, but extended share use such as for code should
disable this to manually mount shares.
'';
};
};
};
@ -67,7 +77,7 @@ in
};
};
systemd.services.prlfsmountd = {
systemd.services.prlfsmountd = mkIf config.hardware.parallels.autoMountShares {
description = "Parallels Shared Folders Daemon";
wantedBy = [ "multi-user.target" ];
serviceConfig = rec {