mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-06-21 03:36:32 +05:30
25 lines
402 B
Nix
25 lines
402 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";
|
|
};
|
|
};
|
|
};
|
|
}
|