dotfiles/home/mpv/default.nix

10 lines
161 B
Nix
Raw Normal View History

2024-06-03 18:06:35 +02:00
{ config, pkgs, ... }:
{
2024-06-04 16:16:30 +02:00
home.file."${config.xdg.configHome}/mpv" = {
source = ./files;
recursive = true;
};
programs.mpv = { enable = true; };
2024-06-03 18:06:35 +02:00
}