323 current 2025-01-10 22:36:23 24.11.20250106.3f0a8ac 6.12.2-zen1 *
This commit is contained in:
parent
e7de53b2fe
commit
60531b7ac8
3 changed files with 31 additions and 1 deletions
|
@ -8,5 +8,6 @@
|
|||
./software.nix
|
||||
./virt.nix
|
||||
./android.nix
|
||||
./mpv.nix
|
||||
];
|
||||
}
|
||||
|
|
29
modules/software/mpv.nix
Normal file
29
modules/software/mpv.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
pkgs,
|
||||
home-manager,
|
||||
...
|
||||
}: {
|
||||
home-manager.programs.mpv = {
|
||||
enable = true;
|
||||
|
||||
package = (
|
||||
pkgs.mpv-unwrapped.wrapper {
|
||||
scripts = with pkgs.mpvScripts; [
|
||||
uosc
|
||||
sponsorblock
|
||||
];
|
||||
|
||||
mpv = pkgs.mpv-unwrapped.override {
|
||||
waylandSupport = true;
|
||||
ffmpeg = pkgs.ffmpeg-full;
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
config = {
|
||||
profile = "high-quality";
|
||||
ytdl-format = "bestvideo+bestaudio";
|
||||
cache-default = 4000000;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -58,7 +58,6 @@
|
|||
amberol_wrapper
|
||||
amberol
|
||||
nuclear
|
||||
mpv
|
||||
#zathura
|
||||
sioyek
|
||||
libreoffice
|
||||
|
@ -70,6 +69,7 @@
|
|||
element-desktop
|
||||
rustdesk-flutter
|
||||
timer
|
||||
prusa-slicer
|
||||
];
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
|
|
Loading…
Add table
Reference in a new issue