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