2023-11-10 13:53:46 +01:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
2023-10-17 23:09:40 +02:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./tdpeuter
|
|
|
|
];
|
2023-11-10 13:53:46 +01:00
|
|
|
|
|
|
|
options.sisyphus.users.wantedGroups = lib.mkOption {
|
|
|
|
type = lib.types.listOf lib.types.str;
|
|
|
|
default = [ ];
|
|
|
|
example = [ config.users.groups.wheel.name ];
|
|
|
|
description = "Groups to which a user should be added";
|
|
|
|
};
|
2023-10-17 23:09:40 +02:00
|
|
|
}
|