24 lines
494 B
Nix
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 [];
|
|
};
|
|
}
|