sisyphus/nixos/users/default.nix

15 lines
294 B
Nix
Raw Normal View History

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
}