Set defaults for the system-manager options.

This commit is contained in:
R-VdP 2023-02-15 15:11:44 +01:00
parent 62dd6e21d1
commit 40c413d25a
No known key found for this signature in database

View file

@ -7,10 +7,12 @@
options.system-manager = { options.system-manager = {
services = lib.mkOption { services = lib.mkOption {
type = with lib.types; listOf str; type = with lib.types; listOf str;
default = [ ];
}; };
etcFiles = lib.mkOption { etcFiles = lib.mkOption {
type = with lib.types; listOf str; type = with lib.types; listOf str;
default = [ ];
}; };
}; };