Remove default secrets

This commit is contained in:
DashieTM 2024-08-25 16:42:13 +02:00
parent 785af695df
commit 580b903cf5

View file

@ -7,14 +7,14 @@
description = "Enable sops secrets"; description = "Enable sops secrets";
}; };
secrets = lib.mkOption { secrets = lib.mkOption {
default = { default = { };
example = {
hub = { }; hub = { };
lab = { }; lab = { };
${config.conf.username} = { }; ${config.conf.username} = { };
nextcloud = { }; nextcloud = { };
access = { }; access = { };
}; };
example = { };
type = with lib.types; attrsOf anything; type = with lib.types; attrsOf anything;
description = "secrets for sops"; description = "secrets for sops";
}; };