dotfiles/home/mpv/default.nix

12 lines
187 B
Nix
Raw Normal View History

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