mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
mpv: prohibit string values in scripts
Strings as scripts don't currently work, and probably haven't worked
since b567d273 (mpv: use wrapMpv instead of mpv-with-scripts,
2020-05-31).
This commit is contained in:
@@ -77,7 +77,7 @@ in {
|
||||
};
|
||||
|
||||
scripts = mkOption {
|
||||
type = with types; listOf (either package str);
|
||||
type = with types; listOf package;
|
||||
default = [ ];
|
||||
example = literalExpression "[ pkgs.mpvScripts.mpris ]";
|
||||
description = ''
|
||||
|
||||
Reference in New Issue
Block a user