nixos/fprot: add type

This commit is contained in:
Scriptkiddi 2021-01-26 21:04:20 +01:00 committed by Cole Helbling
parent d9353519d7
commit 1d22f05d64

View File

@ -16,16 +16,19 @@ in {
description = '' description = ''
product.data file. Defaults to the one supplied with installation package. product.data file. Defaults to the one supplied with installation package.
''; '';
type = types.path;
}; };
frequency = mkOption { frequency = mkOption {
default = 30; default = 30;
type = types.int;
description = '' description = ''
Update virus definitions every X minutes. Update virus definitions every X minutes.
''; '';
}; };
licenseKeyfile = mkOption { licenseKeyfile = mkOption {
type = types.path;
description = '' description = ''
License keyfile. Defaults to the one supplied with installation package. License keyfile. Defaults to the one supplied with installation package.
''; '';