Mon Jun 3 06:06:35 PM CEST 2024

This commit is contained in:
Thomas Avé 2024-06-03 18:06:35 +02:00
parent 03f89ffbda
commit 4e7e951cb3
10 changed files with 28 additions and 0 deletions

View File

@ -9,6 +9,7 @@
./alacritty
./firefox
./ssh
./mpv
];
services.hyprpaper = {
settings = {

27
home/mpv/default.nix Normal file
View File

@ -0,0 +1,27 @@
{ config, pkgs, ... }:
{
programs.mpv = {
enable = true;
config = {
osc = "no";
save-position-on-quit = "yes";
sub-auto = "fuzzy";
profile = "gpu-hq";
scale = "ewa_lanczossharp";
cscale = "ewa_lanczossharp";
video-sync = "display-resample";
interpolation = "true";
tscale = "oversample";
hwdec = "auto";
force-window = "yes";
Idle = {
profile-cond = "p[\"idle-active\"]";
profile-restore = "copy-equal";
title = "' '";
keepaspect = "no";
background = 1;
};
};
};
}