mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
feat: init
This commit is contained in:
parent
354268c8e5
commit
709c4c7eff
3 changed files with 34 additions and 0 deletions
7
home-manager/modules/fastfetch.nix
Normal file
7
home-manager/modules/fastfetch.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
};
|
||||
};
|
||||
}
|
11
home-manager/modules/flameshot.nix
Normal file
11
home-manager/modules/flameshot.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
services.flameshot = {
|
||||
enable = true;
|
||||
settings = {
|
||||
General = {
|
||||
disabledTrayIcon = false;
|
||||
showStartupLaunchMessage = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
16
home-manager/modules/yt-dlp.nix
Normal file
16
home-manager/modules/yt-dlp.nix
Normal 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
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue