nixos/home/packages.nix
2024-06-07 16:05:16 +02:00

37 lines
460 B
Nix

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