nixos/home/packages.nix
2025-02-27 02:26:55 +01:00

44 lines
561 B
Nix

{
system-config,
pkgs,
lib,
...
}: {
home.packages = let
common = with pkgs; [
gcc
gnumake
git
pulsemixer
pavucontrol
playerctl
blueman
nh
wl-clipboard
xdg-utils
hyprshot
obsidian
vlc
obs-studio
keepassxc
ncspot
vesktop
btop
htop
ollama
zoom-us
];
gaming = with pkgs; [
prismlauncher
lutris
steamtinkerlaunch
];
in
common ++ (lib.optionals system-config.gaming.enable gaming);
}