From ce204417dbb6037cf2f9d4f880aba3d61f605316 Mon Sep 17 00:00:00 2001 From: chase Date: Mon, 19 May 2025 19:31:24 -0400 Subject: [PATCH] Moved some packages to home manager, added yt-dlp --- configuration.nix | 20 -------------------- home.nix | 29 +++++++++++++++++++++++++++-- 2 files changed, 27 insertions(+), 22 deletions(-) diff --git a/configuration.nix b/configuration.nix index d74a400..76775e4 100644 --- a/configuration.nix +++ b/configuration.nix @@ -183,36 +183,16 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - alacritty - audacity bitwarden-cli bitwarden-desktop emacs-pgtk - fastfetch - ffmpeg firefoxpwa gcc - gimp - ibm-plex - imagemagick - kdePackages.kdenlive - libreoffice - mpd - mpv - ncmpcpp # nerd-fonts.blex-mono - nut - obs-studio pciutils - protonmail-bridge python3 qemu - ranger rustup - strawberry - texliveBasic - thunderbird - ungoogled-chromium usbutils wget ]; diff --git a/home.nix b/home.nix index e002795..410be13 100644 --- a/home.nix +++ b/home.nix @@ -26,7 +26,6 @@ ''; }; - programs.firefox = { enable = true; 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; [ + audacity 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 ];