Fix deprecation
types.string is deprecated
This commit is contained in:
parent
3cb035de5e
commit
af9856537e
1 changed files with 2 additions and 2 deletions
|
|
@ -3,11 +3,11 @@
|
|||
{
|
||||
options.fablab.pubkeys = with lib.types; {
|
||||
users = lib.mkOption {
|
||||
type = attrsOf (listOf string);
|
||||
type = attrsOf (listOf str);
|
||||
description = "pubkeys for a specific user";
|
||||
};
|
||||
groups = lib.mkOption {
|
||||
type = attrsOf (listOf string);
|
||||
type = attrsOf (listOf str);
|
||||
description = "pubkeys for a group of users";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue