Add mpv to home manager

This commit is contained in:
Kiana Sheibani 2024-05-11 19:19:22 -04:00
parent 48792e9514
commit 07eac39788
3 changed files with 22 additions and 9 deletions

21
home-manager/tools.nix Normal file
View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
{
# Password Store
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions
(exts: with exts; [ pass-update pass-file pass-otp ]);
};
# MPV
programs.mpv.enable = true;
programs.mpv.scripts = with pkgs.mpvScripts;
[ autoload mpris reload seekTo thumbnail quality-menu ];
programs.mpv.config = {
osc = false;
};
}