26 lines
418 B
Nix
26 lines
418 B
Nix
#
|
|
# mpv NixOS & Home manager configuration
|
|
#
|
|
# flake.nix
|
|
# ├─ ./hosts
|
|
# │ └─ ./home.nix
|
|
# └─ ./modules
|
|
# └─ ./programs
|
|
# └─ ./configs
|
|
# └─ mpv.nix *
|
|
#
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
home.file = {
|
|
".config/mpv/mpv.conf".text = ''
|
|
hwdec=vaapi
|
|
vo=gpu
|
|
hwdec-codecs=all
|
|
gpu-context=wayland
|
|
#profile=gpu-hq
|
|
'';
|
|
};
|
|
}
|