feat: init

This commit is contained in:
Nick 2024-11-06 21:58:30 -06:00
parent 354268c8e5
commit 709c4c7eff
3 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{
programs.fastfetch = {
enable = true;
settings = {
};
};
}

View file

@ -0,0 +1,11 @@
{
services.flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = false;
showStartupLaunchMessage = false;
};
};
};
}

View file

@ -0,0 +1,16 @@
{
programs.yt-dlp = {
enable = true;
settings = {
embed-thumbnail = true;
embed-subs = true;
sub-langs = "english";
downloader = "aria2c";
downloader-args = "aria2c:'-c -x8 -s8 -k1M'";
};
extraConfig = ''
--embed-chapters
--audio-quality 0
'';
};
}