mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
fix: use types.str instead of deprecated type.string
This commit is contained in:
parent
452138799c
commit
eb9cd1fc41
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
screenlocker.monitor = lib.mkOption {
|
screenlocker.monitor = lib.mkOption {
|
||||||
type = lib.types.nullOr lib.types.string;
|
type = lib.types.nullOr lib.types.str;
|
||||||
default = null;
|
default = null;
|
||||||
description = ''
|
description = ''
|
||||||
Monitor to use for screen locker. Use `hyprctl monitors` to determine.
|
Monitor to use for screen locker. Use `hyprctl monitors` to determine.
|
||||||
|
|
Loading…
Reference in a new issue