mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-20 00:59:04 +05:30
22 lines
350 B
Nix
22 lines
350 B
Nix
{
|
|
flake.modules.homeManager.desktop = {pkgs, ...}: {
|
|
programs.mpv = {
|
|
enable = true;
|
|
|
|
scripts = (
|
|
with pkgs.mpvScripts; [
|
|
modernz
|
|
thumbfast
|
|
mpris
|
|
mpv-image-viewer.image-positioning
|
|
]
|
|
);
|
|
|
|
config = {
|
|
osc = "no";
|
|
border = "no";
|
|
};
|
|
};
|
|
};
|
|
}
|