nixos/dae: add confgFile option

Co-authored-by: oluceps <nixos@oluceps.uk>
This commit is contained in:
zzzsyyy 2023-09-03 00:46:35 +08:00 committed by oluceps
parent 173ff5d2dd
commit 8f070876da
No known key found for this signature in database

View file

@ -69,6 +69,14 @@ in
'';
};
configFile = mkOption {
type = types.path;
default = "/etc/dae/config.dae";
example = "/path/to/your/config.dae";
description = mdDoc ''
The path of dae config file, end with `.dae`.
'';
};
config = mkOption {
type = types.str;