nixos/spamassassin: allow initPreConf to be a path
Supporting a path here is important because it allows e.g. fetching a configuration from a URL. To do this and provide the configuration as a string, IFD would be necessary. It's just written into a path anyway.
This commit is contained in:
parent
b74c26a17f
commit
59c4035e58
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,6 @@ with lib;
|
|||
let
|
||||
cfg = config.services.spamassassin;
|
||||
spamassassin-local-cf = pkgs.writeText "local.cf" cfg.config;
|
||||
spamassassin-init-pre = pkgs.writeText "init.pre" cfg.initPreConf;
|
||||
|
||||
spamdEnv = pkgs.buildEnv {
|
||||
name = "spamd-env";
|
||||
|
@ -65,8 +64,9 @@ in
|
|||
};
|
||||
|
||||
initPreConf = mkOption {
|
||||
type = types.str;
|
||||
type = with types; either str path;
|
||||
description = "The SpamAssassin init.pre config.";
|
||||
apply = val: if builtins.isPath val then val else pkgs.writeText "init.pre" val;
|
||||
default =
|
||||
''
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue