mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-17 20:52:09 -08:00
fix: use types.str instead of deprecated type.string
Some checks failed
Check flake / check (push) Has been cancelled
Some checks failed
Check flake / check (push) Has been cancelled
This commit is contained in:
parent
03f0456fc9
commit
9ea0fe531d
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ in
|
|||
'';
|
||||
};
|
||||
screenlocker.monitor = lib.mkOption {
|
||||
type = lib.types.nullOr lib.types.string;
|
||||
type = lib.types.nullOr lib.types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
Monitor to use for screen locker. Use `hyprctl monitors` to determine.
|
||||
|
|
Loading…
Reference in a new issue