(home) add mpv program

This commit is contained in:
Laureηt 2024-03-31 16:08:37 +02:00
parent 6e7c6ebfb8
commit 65d68cb840
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk
2 changed files with 7 additions and 0 deletions

View file

@ -8,6 +8,7 @@
./alacritty
./firefox
./gtk
./mpv
./shell
./vscode
./wayland

6
home/mpv/default.nix Normal file
View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
programs.mpv = {
enable = true;
package = pkgs.mpv;
};
}