vars: implement sops.defaultGroups

This commit is contained in:
DavHau
2024-07-11 18:39:00 +07:00
parent 7055b352d4
commit 9988fb744c
6 changed files with 50 additions and 57 deletions

View File

@@ -0,0 +1,11 @@
{ lib, ... }:
{
options = {
clan.core.sops.defaultGroups = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
example = [ "admins" ];
description = "The default groups to for encryption use when no groups are specified.";
};
};
}