feat: switched back to hyprland

This commit is contained in:
Nick 2025-01-08 01:05:45 -06:00
parent dd99b3a827
commit b0dc23c7c0
144 changed files with 1347 additions and 477 deletions

View file

@ -1,6 +1,4 @@
{
extraConfig = ''
--embed-chapters
--audio-quality 0
'';
}
''
--embed-chapters
--audio-quality 0
''

View file

@ -1,9 +1,7 @@
{
settings = {
embed-thumbnail = true;
embed-subs = true;
sub-langs = "english";
downloader = "aria2c";
downloader-args = "aria2c:'-c -x8 -s8 -k1M'";
};
embed-thumbnail = true;
embed-subs = true;
sub-langs = "english";
downloader = "aria2c";
downloader-args = "aria2c:'-c -x8 -s8 -k1M'";
}

View file

@ -1,10 +1,11 @@
{
programs.yt-dlp = let
configPath = ./config;
in
{
enable = true;
}
// (import (configPath + /extraConfig.nix))
// (import (configPath + /settings.nix));
extraConfigPath = import (configPath + "/extraConfig.nix");
settingsPath = import (configPath + "/settings.nix");
in {
enable = true;
extraConfig = extraConfigPath;
settings = settingsPath;
};
}