nixos/home/packages.nix
2024-06-07 18:14:25 +02:00

36 lines
449 B
Nix

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