From 8f070876da873e8b26480a95945dad369b2bd73a Mon Sep 17 00:00:00 2001 From: zzzsyyy Date: Sun, 3 Sep 2023 00:46:35 +0800 Subject: [PATCH] nixos/dae: add confgFile option Co-authored-by: oluceps --- nixos/modules/services/networking/dae.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos/modules/services/networking/dae.nix b/nixos/modules/services/networking/dae.nix index e77a3e1a0c0..ee0ca25d34e 100644 --- a/nixos/modules/services/networking/dae.nix +++ b/nixos/modules/services/networking/dae.nix @@ -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;