Add pipewire

This commit is contained in:
ant 2024-08-11 20:01:37 +02:00
parent 3f45c364b3
commit 21324158dc

View file

@ -3,11 +3,12 @@
config.downloadSoftwares = lib.mkEnableOption "Enable qbittorrent, aria2 and yt-dlp"; config.downloadSoftwares = lib.mkEnableOption "Enable qbittorrent, aria2 and yt-dlp";
}; };
config = lib.mkIf config.downloadSoftwares.enable { config = {
home.packages = with pkgs; [ home.packages = with pkgs; [
yt-dlp yt-dlp
qbittorrent qbittorrent
aria2 aria2
pipewire
]; ];
}; };
} }