fix(beets): bad cover art config

This commit is contained in:
Nydragon 2024-12-19 14:46:53 +01:00
parent 0c0245a8b4
commit 54d13d037e
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 8 additions and 6 deletions

View file

@ -6,6 +6,7 @@
}:
let
inherit (pkgs.writers) writeFishBin;
inherit (lib.my) getExe;
nixos-rebuild =
name: word:
writeFishBin name ''
@ -56,10 +57,10 @@ in
nixedit = writeFishBin "nixedit" "env --chdir ~/.nixconf $EDITOR .";
getext = pkgs.writeScriptBin "ls | grep -E \"\.[a-zA-Z0-9]+$\" --only-matching | sort | uniq";
getext = pkgs.writeScriptBin "getext" "ls | grep -E \"\.[a-zA-Z0-9]+$\" --only-matching | sort | uniq";
rpaste = writeFishBin "rpaste" ''
${pkgs.rustypaste-cli}/bin/rpaste -a "$(cat ${config.age.secrets.rustypaste.path})" -s "https://rusty.ccnlc.eu/" $argv
${getExe pkgs.rustypaste-cli} -a "$(cat ${config.age.secrets.rustypaste.path})" -s "https://rusty.ccnlc.eu/" $argv
'';
gentest = nixos-rebuild "gentest" "test";
@ -76,7 +77,7 @@ in
end
'';
nruni = writeFishBin ''
nruni = writeFishBin "nruni" ''
export NIXPKGS_ALLOW_UNFREE=1;
export NIXPKGS_ALLOW_INSECURE=1
@ -100,14 +101,14 @@ in
nixos-rebuild test \
--flake ~/.nixconf#"$argv[1]" \
--target-host "$argv[1]" \
--use-remote-sudo &| ${pkgs.nix-output-monitor}/bin/nom
--use-remote-sudo &| ${getExe pkgs.nix-output-monitor}
'';
deployswitch = writeFishBin "deployswitch" ''
nixos-rebuild switch \
--flake ~/.nixconf#"$argv[1]" \
--target-host "$argv[1]" \
--use-remote-sudo &| ${pkgs.nix-output-monitor}/bin/nom
--use-remote-sudo &| ${getExe pkgs.nix-output-monitor}
'';
}

View file

@ -39,7 +39,7 @@ in
fetchart = {
auto = true;
cover_format = "jpg";
maxwidth = 500;
minheight = 500;
minwidth = 500;
enforce_ratio = true;
high_resolution = true;

View file

@ -82,6 +82,7 @@
scripts.set-background
scripts.rpaste
scripts.nrun
scripts.nruni
scripts.genswitch
scripts.gentest
scripts.editsym