Compare commits
3 commits
24730484d5
...
0c0245a8b4
Author | SHA1 | Date | |
---|---|---|---|
0c0245a8b4 | |||
599a549540 | |||
78e63a2044 |
6 changed files with 109 additions and 18 deletions
85
home/terminal/beets.nix
Normal file
85
home/terminal/beets.nix
Normal file
|
@ -0,0 +1,85 @@
|
|||
{ pkgs, lib, ... }:
|
||||
let
|
||||
inherit (lib) concatStringsSep listToAttrs;
|
||||
plugins = [
|
||||
"convert"
|
||||
"chroma"
|
||||
"inline"
|
||||
"fish"
|
||||
"fetchart"
|
||||
"lastgenre"
|
||||
"scrub"
|
||||
"duplicates"
|
||||
"info"
|
||||
"missing"
|
||||
"unimported"
|
||||
"badfiles"
|
||||
];
|
||||
in
|
||||
{
|
||||
config = {
|
||||
programs.beets = {
|
||||
package = pkgs.beets.override {
|
||||
pluginOverrides = listToAttrs (
|
||||
map (name: {
|
||||
value.enable = true;
|
||||
inherit name;
|
||||
}) plugins
|
||||
);
|
||||
};
|
||||
settings = {
|
||||
plugins = concatStringsSep " " plugins;
|
||||
per_disc_numbering = "yes";
|
||||
asciify_paths = true;
|
||||
convert = {
|
||||
auto = "yes";
|
||||
format = "flac";
|
||||
never_convert_lossy_files = "yes";
|
||||
};
|
||||
fetchart = {
|
||||
auto = true;
|
||||
cover_format = "jpg";
|
||||
maxwidth = 500;
|
||||
minwidth = 500;
|
||||
enforce_ratio = true;
|
||||
high_resolution = true;
|
||||
};
|
||||
duplicates = {
|
||||
count = true;
|
||||
};
|
||||
lastgenre = {
|
||||
auto = "yes";
|
||||
count = 5;
|
||||
separator = ";";
|
||||
};
|
||||
replace = {
|
||||
"[\\\\/]" = "_";
|
||||
"^\\." = "_";
|
||||
"[\\x00-\\x1f]" = "_";
|
||||
"\\.$" = "_";
|
||||
"\\s+$" = "";
|
||||
"^\\s+" = "";
|
||||
"^-" = "_";
|
||||
};
|
||||
import = {
|
||||
incremental = "yes";
|
||||
bell = "yes";
|
||||
languages = "en";
|
||||
};
|
||||
item_fields = {
|
||||
disc_and_track = "u'%02i.%02i' % (disc, track) if disctotal > 1 else u'%02i' % (track)";
|
||||
primary_albumartist = # python
|
||||
''
|
||||
if albumartist.lower().strip().startswith(albumartists[0].lower().strip()):
|
||||
return albumartists[0]
|
||||
else:
|
||||
return None
|
||||
'';
|
||||
};
|
||||
paths = {
|
||||
default = "%ifdef{primary_albumartist, $primary_albumartist, $albumartist}/$album%aunique{}/$disc_and_track - $artist - $title";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -6,5 +6,6 @@
|
|||
./fish
|
||||
./btop.nix
|
||||
./hyfetch.nix
|
||||
./beets.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -9,23 +9,27 @@ in
|
|||
clip = "wl-copy";
|
||||
};
|
||||
functions = {
|
||||
gitignore = "curl -sL https://www.gitignore.io/api/$argv";
|
||||
mv-bad-creation-date = ''
|
||||
${getExe' pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"
|
||||
'';
|
||||
rename-images = ''
|
||||
set -f input "$PWD/$argv[1]"
|
||||
gitignore = # fish
|
||||
"curl -sL https://www.gitignore.io/api/$argv";
|
||||
mv-bad-creation-date = # fish
|
||||
''
|
||||
${getExe' pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"
|
||||
'';
|
||||
rename-images = # fish
|
||||
''
|
||||
set -f input "$PWD/$argv[1]"
|
||||
|
||||
if not test -d $input
|
||||
echo "input is not a directory"
|
||||
else
|
||||
${getExe' pkgs.exiftool "exiftool"} -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}"
|
||||
end
|
||||
'';
|
||||
if not test -d $input
|
||||
echo "input is not a directory"
|
||||
else
|
||||
${getExe' pkgs.exiftool "exiftool"} -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}"
|
||||
end
|
||||
'';
|
||||
fish_prompt = builtins.readFile ./fish_prompt.fish;
|
||||
revert = ''
|
||||
env --chdir $HOME/.nixconf sudo nixos-rebuild switch --flake .#$(hostname) --rollback
|
||||
'';
|
||||
revert = # fish
|
||||
''
|
||||
env --chdir $HOME/.nixconf sudo nixos-rebuild switch --flake .#$(hostname) --rollback
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
sway.enable = true;
|
||||
hyprland.enable = true;
|
||||
pulseview.enable = true;
|
||||
|
||||
steam.enable = true;
|
||||
gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
beets.enable = true;
|
||||
waybar.enable = true;
|
||||
rofi.enable = true;
|
||||
vscode.enable = true;
|
||||
|
|
|
@ -6,7 +6,8 @@
|
|||
base_domain = "ts";
|
||||
|
||||
nameservers.global = [
|
||||
"100.64.0.4"
|
||||
#"100.64.0.4"
|
||||
"9.9.9.9"
|
||||
];
|
||||
|
||||
extra_records =
|
||||
|
|
Loading…
Add table
Reference in a new issue