11 lines
215 B
Nix
11 lines
215 B
Nix
{ config, system, lib, pkgs-unstable, ... }:
|
|
|
|
{
|
|
home-manager.users.tdpeuter.home = {
|
|
packages = with pkgs-unstable; [
|
|
mpv
|
|
];
|
|
|
|
file.".config/mpv".source = ../../../../stow/mpv/.config/mpv;
|
|
};
|
|
}
|