flocon/modules/hm/programs/games.nix

18 lines
271 B
Nix
Raw Normal View History

{
lib,
pkgs,
osConfig,
...
}: {
config = lib.mkIf osConfig.local.profiles.gaming.enable {
home.packages = [
pkgs.mangohud
pkgs.bolt-launcher
pkgs.ankama-launcher
pkgs.lutris
pkgs.qbittorrent
pkgs.protonplus
];
};
}