Moved some packages to home manager, added yt-dlp

This commit is contained in:
2025-05-19 19:31:24 -04:00
parent 57ad7fe5c6
commit ce204417db
2 changed files with 27 additions and 22 deletions

View File

@@ -183,36 +183,16 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
alacritty
audacity
bitwarden-cli bitwarden-cli
bitwarden-desktop bitwarden-desktop
emacs-pgtk emacs-pgtk
fastfetch
ffmpeg
firefoxpwa firefoxpwa
gcc gcc
gimp
ibm-plex
imagemagick
kdePackages.kdenlive
libreoffice
mpd
mpv
ncmpcpp
# nerd-fonts.blex-mono # nerd-fonts.blex-mono
nut
obs-studio
pciutils pciutils
protonmail-bridge
python3 python3
qemu qemu
ranger
rustup rustup
strawberry
texliveBasic
thunderbird
ungoogled-chromium
usbutils usbutils
wget wget
]; ];

View File

@@ -26,7 +26,6 @@
''; '';
}; };
programs.firefox = { programs.firefox = {
enable = true; enable = true;
nativeMessagingHosts = [ pkgs.firefoxpwa ]; nativeMessagingHosts = [ pkgs.firefoxpwa ];
@@ -108,10 +107,36 @@
}; };
}; };
programs.git-credential-oauth.enable =true; programs.git-credential-oauth.enable = true;
programs.yt-dlp = {
enable = true;
settings = {
embed-thumbnail = true;
};
};
home.packages = with pkgs; [ home.packages = with pkgs; [
audacity
anki-bin anki-bin
fastfetch
ffmpeg
gimp
ibm-plex
imagemagick
kdePackages.kdenlive
libreoffice
mpd
mpv
ncmpcpp
nerd-fonts.blex-mono
obs-studio
protonmail-bridge
ranger
strawberry
texliveBasic
thunderbird
ungoogled-chromium
runelite runelite
]; ];