mirror of
https://github.com/vinceliuice/grub2-themes.git
synced 2024-11-05 15:46:14 +01:00
flake.nix: Change deprecated string type to str
This commit is contained in:
parent
de378454b5
commit
c8f6113801
@ -113,7 +113,7 @@
|
|||||||
bootMenuConfig = mkOption {
|
bootMenuConfig = mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
example = "left = 30%";
|
example = "left = 30%";
|
||||||
type = types.nullOr types.string;
|
type = types.nullOr types.str;
|
||||||
description = ''
|
description = ''
|
||||||
Grub theme definition for boot_menu.
|
Grub theme definition for boot_menu.
|
||||||
Refer to config/theme-*.txt for reference.
|
Refer to config/theme-*.txt for reference.
|
||||||
@ -122,7 +122,7 @@
|
|||||||
terminalConfig = mkOption {
|
terminalConfig = mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
example = "terminal-font: \"Terminus Regular 18\"";
|
example = "terminal-font: \"Terminus Regular 18\"";
|
||||||
type = types.nullOr types.string;
|
type = types.nullOr types.str;
|
||||||
description = ''
|
description = ''
|
||||||
Replaces grub theme definition for terminial-*.
|
Replaces grub theme definition for terminial-*.
|
||||||
Refer to config/theme-*.txt for reference.
|
Refer to config/theme-*.txt for reference.
|
||||||
|
Loading…
Reference in New Issue
Block a user