dotfiles/home/mpv/default.nix

10 lines
175 B
Nix
Raw Normal View History

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