types.string -> types.str

This commit is contained in:
Colin 2024-02-21 00:25:44 +00:00
parent c0f374bd80
commit c6470918de
2 changed files with 2 additions and 2 deletions

View File

@ -213,7 +213,7 @@ in
}; };
sane.defaultUser = mkOption { sane.defaultUser = mkOption {
type = types.nullOr types.string; type = types.nullOr types.str;
default = null; default = null;
description = '' description = ''
the name of the default user. the name of the default user.

View File

@ -2,7 +2,7 @@
{ {
options = with lib; { options = with lib; {
sane.silencedWarnings = mkOption { sane.silencedWarnings = mkOption {
type = types.listOf types.string; type = types.listOf types.str;
default = []; default = [];
description = '' description = ''
list of `config.warnings` values you want to ignore, verbatim. list of `config.warnings` values you want to ignore, verbatim.