nix-system/home/additional-software.nix
2025-05-21 23:08:53 +02:00

25 lines
512 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
vesktop
]
else if variant == "allegro" then
with pkgs; [
aria2
pipewire
teams-for-linux
]
else [];
};
}