Reorganize some apps and add wlsunset

This commit is contained in:
Jimbo 2024-12-22 22:01:38 -05:00
parent 8ffc50bef7
commit 829459865c
11 changed files with 10 additions and 14 deletions

View file

@ -1,10 +1,5 @@
{ pkgs, ... }:
{
imports = [
./spotdl
./yt-dlp
];
home.packages = with pkgs; [
ffmpeg
ffmpegthumbnailer

View file

@ -1,7 +0,0 @@
{ pkgs, ... }:
{
home = {
packages = with pkgs; [ spotdl ];
shellAliases.spotdl = "spotdl --m3u --format opus";
};
}

View file

@ -1,19 +0,0 @@
{ ... }:
{
programs.yt-dlp = {
enable = true;
settings = {
add-metadata = true;
embed-thumbnail = true;
convert-thumbnails = "jpg";
audio-format = "opus";
output = ''"%(artist)s - %(title)s.%(ext)s"'';
};
};
home.shellAliases = {
ytm3u = "yt-dlp -gS proto:m3u8";
opusdl = ''yt-dlp -f ba -x --audio-quality 0'';
spotdl = "spotdl --m3u --format opus";
};
}

View file

@ -1,7 +1,5 @@
{ pkgs, blender, ... }:
{
imports = [ ./obs ];
nixpkgs.overlays = [ blender.overlays.default ];
home.packages = with pkgs; [

View file

@ -1,14 +0,0 @@
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-pipewire-audio-capture
obs-webkitgtk
obs-multi-rtmp
obs-vkcapture
obs-tuna
looking-glass-obs
];
};
}