You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Password. WARNING: The password becomes world readable in the Nix store.
80
+
A file containing the password.
77
81
'';
78
82
};
79
83
@@ -87,12 +91,11 @@ with lib;
87
91
};
88
92
89
93
configFile=mkOption{
90
-
default="/etc/ddclient.conf";
91
-
type=path;
94
+
default=null;
95
+
type=nullOrpath;
92
96
description=''
93
97
Path to configuration file.
94
-
When set to the default '/etc/ddclient.conf' it will be populated with the various other options in this module. When it is changed (for example: '/root/nixos/secrets/ddclient.conf') the file read directly to configure ddclient. This is a source of impurity.
95
-
The purpose of this is to avoid placing secrets into the store.
98
+
When set this overrides the generated configuration from module options.
0 commit comments