mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
16 lines
318 B
Nix
16 lines
318 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./mpv-stubs.nix ];
|
|
|
|
programs.mpv = {
|
|
enable = true;
|
|
package = pkgs.emptyDirectory;
|
|
scripts = [ pkgs.mpvScript ];
|
|
};
|
|
|
|
test.asserts.assertions.expected = [
|
|
''
|
|
The programs.mpv "package" option is mutually exclusive with "scripts" option.''
|
|
];
|
|
}
|