nixos/home/packages.nix
2025-02-27 03:15:17 +01:00

43 lines
551 B
Nix

{
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);
}