fixup svd: remove cfg.configFile

This commit is contained in:
Zhaofeng Li 2022-09-21 18:28:27 +00:00
parent 3a02d09756
commit 88b5731333

View file

@ -155,17 +155,12 @@ in {
type = types.attrsOf programType;
default = {};
};
configFile = lib.mkOption {
type = types.package;
internal = true;
default = configFile;
};
};
};
config = lib.mkIf cfg.enable {
environment.etc."supervisord.conf" = {
source = cfg.configFile;
source = configFile;
};
environment.packages = [ supervisorctl ];