···3with lib;
45let
6-7- prl-tools = config.boot.kernelPackages.prl-tools;
8-9in
1011{
···30 mounted through `mount -t prl_fs ...` as this service will remount and trample any set options.
31 Recommended to enable for simple file sharing, but extended share use such as for code should
32 disable this to manually mount shares.
000000000033 '';
34 };
35 };
···3with lib;
45let
6+ prl-tools = config.hardware.parallels.package;
007in
89{
···28 mounted through `mount -t prl_fs ...` as this service will remount and trample any set options.
29 Recommended to enable for simple file sharing, but extended share use such as for code should
30 disable this to manually mount shares.
31+ '';
32+ };
33+34+ package = mkOption {
35+ type = types.package;
36+ default = config.boot.kernelPackages.prl-tools;
37+ defaultText = "config.boot.kernelPackages.prl-tools";
38+ example = literalExample "config.boot.kernelPackages.prl-tools";
39+ description = ''
40+ Defines which package to use for prl-tools. Override to change the version.
41 '';
42 };
43 };