16 lines
359 B
Nix
Raw Normal View History

2019-09-17 16:48:19 +04:00
{ config, lib, pkgs, ... }:
with rec {
inherit (config) deviceSpecific;
};
with deviceSpecific; {
2019-09-17 02:20:32 +04:00
home-manager.users.alukard.programs.mpv = {
enable = true;
2019-09-17 16:48:19 +04:00
config = {
ytdl-format = if isLaptop then
"bestvideo[height<=?1080]+bestaudio/best"
2019-09-17 02:20:32 +04:00
else
2019-09-17 16:48:19 +04:00
"bestvideo+bestaudio/best";
# cache-default = 4000000;
}
2019-09-17 02:20:32 +04:00
};
}