mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
treewide: stop using types.string
It is an error[1] now. [1]: https://github.com/NixOS/nixpkgs/pull/247848
This commit is contained in:
parent
4e6868b1aa
commit
74fadae942
9 changed files with 14 additions and 14 deletions
|
|
@ -89,7 +89,7 @@ in {
|
|||
options = {
|
||||
enable = mkEnableOption (mdDoc "GameScope Session");
|
||||
args = mkOption {
|
||||
type = types.listOf types.string;
|
||||
type = types.listOf types.str;
|
||||
default = [ ];
|
||||
description = mdDoc ''
|
||||
Arguments to be passed to GameScope for the session.
|
||||
|
|
@ -97,7 +97,7 @@ in {
|
|||
};
|
||||
|
||||
env = mkOption {
|
||||
type = types.attrsOf types.string;
|
||||
type = types.attrsOf types.str;
|
||||
default = { };
|
||||
description = mdDoc ''
|
||||
Environmental variables to be passed to GameScope for the session.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue