nix-system/additional-software.nix
2025-05-21 22:15:10 +02:00

24 lines
494 B
Nix

{ lib, config, pkgs, variant, ... }: {
config = {
home.packages =
if variant == "default" then
with pkgs; [
qbittorrent
pipewire
discord
feather # monero wallet
# litecoin
librewolf
spotify
ungoogled-chromium
immich-cli
]
else if variant == "allegro" then
with pkgs; [
aria2
pipewire
teams-for-linux
]
else [];
};
}