Merge pull request #204 from varris1/flake-fix

flake.nix: Change deprecated string type to str
This commit is contained in:
Vince 2023-08-16 21:39:13 +08:00 committed by GitHub
commit 9843327eb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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.