formatted everything, things are looking nice now.

This commit is contained in:
vali 2024-05-15 00:14:59 +02:00
commit ad562f5479
57 changed files with 2269 additions and 2311 deletions

View file

@ -1,32 +1,24 @@
{
config,
lib,
pkgs,
...
}: with lib; let
cfg = config.modules.programs.mpv;
username = config.modules.other.system.username;
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.programs.mpv;
username = config.modules.other.system.username;
in {
options.modules.programs.mpv.enable = mkEnableOption "mpv";
options.modules.programs.mpv.enable = mkEnableOption "mpv";
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.mpv = {
enable = true;
config = {
hwdec = "auto";
volume = 50;
osc = "no";
osd-bar = "no";
border = "no";
};
scripts = with pkgs.mpvScripts; [
mpris
thumbfast
sponsorblock
uosc
];
};
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.mpv = {
enable = true;
config = {
hwdec = "auto";
volume = 50;
osc = "no";
osd-bar = "no";
border = "no";
};
scripts = with pkgs.mpvScripts; [ mpris thumbfast sponsorblock uosc ];
};
};
};
}