mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Hardware/Nvidia/Opensource] silence warning by using types.str instead of types.string
This commit is contained in:
parent
c422181cfe
commit
4663e3e362
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ in {
|
||||||
options.aviallon.hardware.nvidia.nouveau = {
|
options.aviallon.hardware.nvidia.nouveau = {
|
||||||
config = mkOption {
|
config = mkOption {
|
||||||
description = "nouveau boot config";
|
description = "nouveau boot config";
|
||||||
type = with types; attrsOf (nullOr (oneOf [ int string bool ]));
|
type = with types; attrsOf (nullOr (oneOf [ int str bool ]));
|
||||||
example = { NvBoost = 1; };
|
example = { NvBoost = 1; };
|
||||||
default = {};
|
default = {};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue