flake.nix: Change deprecated string type to str

pull/204/head
Varris 2 years ago
parent de378454b5
commit c8f6113801

@ -113,7 +113,7 @@
bootMenuConfig = mkOption {
default = null;
example = "left = 30%";
type = types.nullOr types.string;
type = types.nullOr types.str;
description = ''
Grub theme definition for boot_menu.
Refer to config/theme-*.txt for reference.
@ -122,7 +122,7 @@
terminalConfig = mkOption {
default = null;
example = "terminal-font: \"Terminus Regular 18\"";
type = types.nullOr types.string;
type = types.nullOr types.str;
description = ''
Replaces grub theme definition for terminial-*.
Refer to config/theme-*.txt for reference.

Loading…
Cancel
Save