nginx fix permissions for comms and add mpv

This commit is contained in:
Kopatz
2024-09-29 16:30:11 +02:00
parent 8432f7d61c
commit 4f99fb14c5
7 changed files with 38 additions and 21 deletions

14
home-manager/mpv.nix Normal file
View File

@@ -0,0 +1,14 @@
{ config, pkgs, inputs, ...}:
{
programs.mpv = {
enable = true;
config = {
volume = 50;
};
scripts = with pkgs.mpvScripts; [
mpris
videoclip # keybind = c
modernx
];
};
}